Text-to-Image
Diffusers
Trained with AutoTrain
stable-diffusion-xl
stable-diffusion-xl-diffusers
lora
template:sd-lora
Instructions to use monicho/RetroFutureSDXL with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use monicho/RetroFutureSDXL with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("stabilityai/stable-diffusion-xl-base-1.0", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("monicho/RetroFutureSDXL") prompt = "Retro future theme" image = pipe(prompt).images[0] - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
Update README.md
Browse files
README.md
CHANGED
|
@@ -28,9 +28,10 @@ LoRA for the text encoder was enabled: False.
|
|
| 28 |
|
| 29 |
Special VAE used for training: None.
|
| 30 |
|
|
|
|
| 31 |
## Trigger words
|
| 32 |
|
| 33 |
-
You should use Retro future theme to trigger the image generation.
|
| 34 |
|
| 35 |
## Download model
|
| 36 |
|
|
|
|
| 28 |
|
| 29 |
Special VAE used for training: None.
|
| 30 |
|
| 31 |
+
|
| 32 |
## Trigger words
|
| 33 |
|
| 34 |
+
You should use Retro future theme always to trigger the image generation.
|
| 35 |
|
| 36 |
## Download model
|
| 37 |
|