Instructions to use Owen777/UltraFlux-v1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Owen777/UltraFlux-v1 with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Owen777/UltraFlux-v1", dtype=torch.bfloat16, device_map="cuda") prompt = " " image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps
- Draw Things
- DiffusionBee
Update model_index.json
Browse files- model_index.json +1 -5
model_index.json
CHANGED
|
@@ -25,9 +25,5 @@
|
|
| 25 |
"transformer": [
|
| 26 |
"diffusers",
|
| 27 |
"FluxTransformer2DModel"
|
| 28 |
-
],
|
| 29 |
-
"vae": [
|
| 30 |
-
"autoencoder_kl",
|
| 31 |
-
"AutoencoderKL"
|
| 32 |
]
|
| 33 |
-
}
|
|
|
|
| 25 |
"transformer": [
|
| 26 |
"diffusers",
|
| 27 |
"FluxTransformer2DModel"
|
|
|
|
|
|
|
|
|
|
|
|
|
| 28 |
]
|
| 29 |
+
}
|