Instructions to use XLabs-AI/flux-controlnet-hed-diffusers with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use XLabs-AI/flux-controlnet-hed-diffusers with Diffusers:
pip install -U diffusers transformers accelerate
from diffusers import ControlNetModel, StableDiffusionControlNetPipeline controlnet = ControlNetModel.from_pretrained("XLabs-AI/flux-controlnet-hed-diffusers") pipe = StableDiffusionControlNetPipeline.from_pretrained( "black-forest-labs/FLUX.1-dev", controlnet=controlnet ) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- Draw Things
- DiffusionBee
Andrey Laptev commited on
Commit ·
01eeda2
1
Parent(s): 5c8d3b3
Update config with conditioning_embedding_channel
Browse files- config.json +1 -1
config.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
| 9 |
],
|
| 10 |
"guidance_embeds": true,
|
| 11 |
"in_channels": 64,
|
| 12 |
-
"
|
| 13 |
"joint_attention_dim": 4096,
|
| 14 |
"num_attention_heads": 24,
|
| 15 |
"num_layers": 2,
|
|
|
|
| 9 |
],
|
| 10 |
"guidance_embeds": true,
|
| 11 |
"in_channels": 64,
|
| 12 |
+
"conditioning_embedding_channel": 16,
|
| 13 |
"joint_attention_dim": 4096,
|
| 14 |
"num_attention_heads": 24,
|
| 15 |
"num_layers": 2,
|