Instructions to use InstantX/FLUX.1-dev-Controlnet-Union with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use InstantX/FLUX.1-dev-Controlnet-Union with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("InstantX/FLUX.1-dev-Controlnet-Union", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -119,3 +119,9 @@ image = pipe(
|
|
| 119 |
).images[0]
|
| 120 |
image.save("image.jpg")
|
| 121 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 119 |
).images[0]
|
| 120 |
image.save("image.jpg")
|
| 121 |
```
|
| 122 |
+
|
| 123 |
+
|
| 124 |
+
|
| 125 |
+
# Acknowledgements
|
| 126 |
+
|
| 127 |
+
Thank you, [zzzzzero](https://github.com/zzzzzero), for pointing out the bug in the model.
|