Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- text-to-image
|
| 4 |
+
- stable-diffusion
|
| 5 |
+
- lora
|
| 6 |
+
- diffusers
|
| 7 |
+
- template:sd-lora
|
| 8 |
+
widget:
|
| 9 |
+
- text: >-
|
| 10 |
+
A realistic 3D rendering of a mysterious, ancient artifact. The artifact
|
| 11 |
+
appears to be made from a mix of gold and stone, featuring intricate
|
| 12 |
+
carvings and symbols that suggest a lost civilization. It sits on a pedestal
|
| 13 |
+
in a dimly lit room, casting shadows on the walls that hint at its complex
|
| 14 |
+
shape. The atmosphere is filled with a sense of wonder and ancient power,
|
| 15 |
+
inviting the viewer to speculate about its origins and purpose.
|
| 16 |
+
output:
|
| 17 |
+
url: images/c17abed6-d041-4330-9791-a8e09f619c0f.png
|
| 18 |
+
- text: a cute robot artist painting on an easel, concept art
|
| 19 |
+
output:
|
| 20 |
+
url: images/cd51e756-cdde-49bc-b907-2f45d9079cc7.png
|
| 21 |
+
- text: neon holography crystal cat
|
| 22 |
+
output:
|
| 23 |
+
url: images/7323a470-e3b5-4c03-8431-8e5de6f65f39.png
|
| 24 |
+
base_model: stabilityai/stable-diffusion-xl-base-1.0
|
| 25 |
+
instance_prompt: null
|
| 26 |
+
license: openrail++
|
| 27 |
+
---
|
| 28 |
+
# SDTX - Image Generation Model
|
| 29 |
+
|
| 30 |
+
<Gallery />
|
| 31 |
+
|
| 32 |
+
## Model description
|
| 33 |
+
|
| 34 |
+
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.
|
| 35 |
+
|
| 36 |
+
## Download model
|
| 37 |
+
|
| 38 |
+
Weights for this model are available in Safetensors format.
|
| 39 |
+
|
| 40 |
+
[Download](https://huggingface.co/binarybardakshat/SDTX/tree/main) them in the Files & versions tab.
|
| 41 |
+
|
| 42 |
+
## How to Use
|
| 43 |
+
|
| 44 |
+
You can use the SDTX model in your projects by loading it with the `diffusers` library.
|
| 45 |
+
|
| 46 |
+
```python
|
| 47 |
+
from diffusers import StableDiffusionPipeline
|
| 48 |
+
|
| 49 |
+
# Load the model
|
| 50 |
+
pipeline = StableDiffusionPipeline.from_pretrained("username/SDTX")
|
| 51 |
+
|
| 52 |
+
# Generate an image
|
| 53 |
+
image = pipeline("A futuristic city skyline at dusk").images[0]
|
| 54 |
+
image.save("futuristic_city.png")
|