SDTX is a LoRA model based on Stable Diffusion XL, trained by @binarybardakshat. It is designed for efficient image generation with low space usage and is CUDA-integrated, ensuring optimal performance on compatible hardware. The model is suitable for generating high-quality images with a focus on creativity and detail.
Weights for this model are available in Safetensors format.
Download them in the Files & versions tab.
1from diffusers import StableDiffusionPipeline
2
3# Load the model
4pipeline = StableDiffusionPipeline.from_pretrained("username/SDTX")
5
6# Generate an image
7image = pipeline("India as a tech champ").images[0]
8image.save("india_tech_champ.png")