Image-Text-to-Image
Diffusers
Safetensors
English
Chinese
qwen3_vl
comfyui
text-to-image
image-editing
fp16
distilled
Instructions to use drbaph/HiDream-O1-Image-Dev-FP16 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use drbaph/HiDream-O1-Image-Dev-FP16 with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("drbaph/HiDream-O1-Image-Dev-FP16", 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
|
@@ -18,7 +18,7 @@ language:
|
|
| 18 |
This is the **FP16** conversion of [HiDream-ai/HiDream-O1-Image-Dev](https://huggingface.co/HiDream-ai/HiDream-O1-Image-Dev) — the **distilled** variant of HiDream-O1-Image — for use with **ComfyUI**. The Dev model runs in just **28 steps** (half the steps of the full model) making it significantly faster while retaining strong output quality.
|
| 19 |
|
| 20 |
|
| 21 |
-

|
| 24 |
|
|
|
|
| 18 |
This is the **FP16** conversion of [HiDream-ai/HiDream-O1-Image-Dev](https://huggingface.co/HiDream-ai/HiDream-O1-Image-Dev) — the **distilled** variant of HiDream-O1-Image — for use with **ComfyUI**. The Dev model runs in just **28 steps** (half the steps of the full model) making it significantly faster while retaining strong output quality.
|
| 19 |
|
| 20 |
|
| 21 |
+

|
| 22 |
|
| 23 |
> **Custom ComfyUI Node:** [Saganaki22/HiDream_O1-ComfyUI](https://github.com/Saganaki22/HiDream_O1-ComfyUI)
|
| 24 |
|