File size: 1,806 Bytes
f5d5ba8
 
 
 
 
 
 
 
 
f3c7995
f5d5ba8
11d42d1
f3c7995
 
f5d5ba8
11d42d1
f3c7995
 
f5d5ba8
11d42d1
f5d5ba8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f3c7995
f5d5ba8
 
 
 
 
 
 
 
 
 
 
 
f3c7995
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
---
tags:
- text-to-image
- stable-diffusion
- lora
- diffusers
- template:sd-lora
widget:
- text: >-
    India as a tech champ, showcasing the country as a global leader in technology with a futuristic skyline filled with tech hubs, innovation centers, and advanced infrastructure.
  output:
    url: india-tech-champ.png
- text: >-
    An astronaut floating in the deep ocean, surrounded by marine life, with the ocean floor visible in the background. The scene is surreal, blending space exploration with underwater adventure.
  output:
    url: astronaut-ocean.png
- text: >-
    A group of dogs and cats laughing together in a park, with joyful expressions and playful energy. The image captures a moment of pure happiness among the animals.
  output:
    url: dogs-cats-laughing.png
base_model: stabilityai/stable-diffusion-xl-base-1.0
instance_prompt: null
license: openrail++
---
# SDTX - Image Generation Model

<Gallery />

## Model description

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.

## Download model

Weights for this model are available in Safetensors format.

[Download](https://huggingface.co/username/SDTX/tree/main) them in the Files & versions tab.

## How to Use

You can use the SDTX model in your projects by loading it with the `diffusers` library.

```python
from diffusers import StableDiffusionPipeline

# Load the model
pipeline = StableDiffusionPipeline.from_pretrained("username/SDTX")

# Generate an image
image = pipeline("India as a tech champ").images[0]
image.save("india_tech_champ.png")