Update model card: Add zenlm tag, update to AutoPipelineForText2Image usage
Browse files
README.md
CHANGED
|
@@ -8,6 +8,8 @@ tags:
|
|
| 8 |
- text-to-image
|
| 9 |
- image-generation
|
| 10 |
- zen
|
|
|
|
|
|
|
| 11 |
- hanzo
|
| 12 |
library_name: diffusers
|
| 13 |
---
|
|
@@ -30,10 +32,10 @@ Zen3 Image Dev prioritizes image quality and prompt fidelity over speed. It exce
|
|
| 30 |
## Usage
|
| 31 |
|
| 32 |
```python
|
| 33 |
-
from diffusers import
|
| 34 |
import torch
|
| 35 |
|
| 36 |
-
pipe =
|
| 37 |
"zenlm/zen3-image-dev",
|
| 38 |
torch_dtype=torch.bfloat16
|
| 39 |
)
|
|
@@ -57,35 +59,22 @@ image.save("output.png")
|
|
| 57 |
| Architecture | Diffusion Transformer |
|
| 58 |
| Precision | bfloat16 |
|
| 59 |
| License | MIT |
|
| 60 |
-
| Output Resolution | Up to 1024x1024 |
|
| 61 |
-
| Inference Steps | 20-50 (recommended: 28) |
|
| 62 |
|
| 63 |
-
##
|
| 64 |
|
| 65 |
-
|
| 66 |
-
|
| 67 |
-
-
|
| 68 |
-
-
|
| 69 |
-
|
| 70 |
-
|
| 71 |
|
| 72 |
-
|
| 73 |
-
- Requires more VRAM for optimal quality
|
| 74 |
-
- Text rendering in generated images may be imperfect
|
| 75 |
-
- Complex multi-subject scenes may require prompt refinement
|
| 76 |
|
| 77 |
-
##
|
| 78 |
|
| 79 |
-
|
| 80 |
-
@misc{zen3-image-dev,
|
| 81 |
-
title={Zen3 Image Dev: High-Fidelity Text-to-Image Generation},
|
| 82 |
-
author={Hanzo AI},
|
| 83 |
-
year={2025},
|
| 84 |
-
url={https://huggingface.co/zenlm/zen3-image-dev}
|
| 85 |
-
}
|
| 86 |
-
```
|
| 87 |
|
| 88 |
-
|
| 89 |
|
| 90 |
-
|
| 91 |
-
- [Hanzo AI](https://hanzo.ai)
|
|
|
|
| 8 |
- text-to-image
|
| 9 |
- image-generation
|
| 10 |
- zen
|
| 11 |
+
- zen3
|
| 12 |
+
- zenlm
|
| 13 |
- hanzo
|
| 14 |
library_name: diffusers
|
| 15 |
---
|
|
|
|
| 32 |
## Usage
|
| 33 |
|
| 34 |
```python
|
| 35 |
+
from diffusers import AutoPipelineForText2Image
|
| 36 |
import torch
|
| 37 |
|
| 38 |
+
pipe = AutoPipelineForText2Image.from_pretrained(
|
| 39 |
"zenlm/zen3-image-dev",
|
| 40 |
torch_dtype=torch.bfloat16
|
| 41 |
)
|
|
|
|
| 59 |
| Architecture | Diffusion Transformer |
|
| 60 |
| Precision | bfloat16 |
|
| 61 |
| License | MIT |
|
|
|
|
|
|
|
| 62 |
|
| 63 |
+
## API Access
|
| 64 |
|
| 65 |
+
```bash
|
| 66 |
+
curl https://api.hanzo.ai/v1/images/generations \
|
| 67 |
+
-H "Authorization: Bearer $HANZO_API_KEY" \
|
| 68 |
+
-H "Content-Type: application/json" \
|
| 69 |
+
-d '{"model": "zen3-image-dev", "prompt": "A majestic mountain landscape"}'
|
| 70 |
+
```
|
| 71 |
|
| 72 |
+
Get your API key at [console.hanzo.ai](https://console.hanzo.ai) — $5 free credit on signup.
|
|
|
|
|
|
|
|
|
|
| 73 |
|
| 74 |
+
## License
|
| 75 |
|
| 76 |
+
MIT
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 77 |
|
| 78 |
+
---
|
| 79 |
|
| 80 |
+
*Zen LM is developed by [Hanzo AI](https://hanzo.ai) — Frontier AI infrastructure.*
|
|
|