zeekay commited on
Commit
e6ddb9c
·
verified ·
1 Parent(s): 80276f3

Update README with Zen branding

Browse files
Files changed (1) hide show
  1. README.md +75 -27
README.md CHANGED
@@ -1,43 +1,91 @@
1
  ---
2
- library_name: transformers
 
 
3
  pipeline_tag: text-to-image
4
  tags:
5
- - text-to-image
6
- - diffusion
7
- - zen
8
- - zen3
9
- - hanzo
10
- license: apache-2.0
11
  ---
12
 
13
  # Zen3 Image Dev
14
 
15
- **Zen LM by Hanzo AI** Developer variant with open weights. Same architecture as Zen3 Image.
16
 
17
- ## Specs
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
 
19
  | Property | Value |
20
  |----------|-------|
21
- | Parameters | 12B |
22
- | Context | 1024px |
23
- | Architecture | Zen MoDE (Mixture of Distilled Experts) |
24
- | Generation | Zen3 |
25
-
26
- ## API Access
27
-
28
- ```bash
29
- curl https://api.hanzo.ai/v1/chat/completions \
30
- -H "Authorization: Bearer $HANZO_API_KEY" \
31
- -H "Content-Type: application/json" \
32
- -d '{"model": "zen3-image-dev", "messages": [{"role": "user", "content": "Hello"}]}'
33
- ```
34
 
35
- Get your API key at [console.hanzo.ai](https://console.hanzo.ai) — $5 free credit on signup.
36
 
37
- ## License
 
 
 
38
 
39
- Apache 2.0
40
 
41
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
42
 
43
- *Zen LM is developed by [Hanzo AI](https://hanzo.ai) — Frontier AI infrastructure.*
 
 
1
  ---
2
+ license: mit
3
+ language:
4
+ - en
5
  pipeline_tag: text-to-image
6
  tags:
7
+ - diffusers
8
+ - text-to-image
9
+ - image-generation
10
+ - zen
11
+ - hanzo
12
+ library_name: diffusers
13
  ---
14
 
15
  # Zen3 Image Dev
16
 
17
+ **Zen3 Image Dev** is a high-fidelity text-to-image generation model developed by [Hanzo AI](https://hanzo.ai) as part of the Zen model family. It produces photorealistic and artistically detailed images with exceptional prompt adherence.
18
 
19
+ ## Overview
20
+
21
+ Zen3 Image Dev prioritizes image quality and prompt fidelity over speed. It excels at generating detailed, coherent images across a wide range of styles and subjects, making it the premium choice for quality-critical applications.
22
+
23
+ ### Key Features
24
+
25
+ - **Exceptional image quality**: State-of-the-art visual fidelity
26
+ - **Strong prompt adherence**: Accurately renders complex descriptions
27
+ - **Versatile style range**: Photorealism, illustration, 3D, and more
28
+ - **High resolution**: Native 1024x1024 with support for other aspect ratios
29
+
30
+ ## Usage
31
+
32
+ ```python
33
+ from diffusers import DiffusionPipeline
34
+ import torch
35
+
36
+ pipe = DiffusionPipeline.from_pretrained(
37
+ "zenlm/zen3-image-dev",
38
+ torch_dtype=torch.bfloat16
39
+ )
40
+ pipe.to("cuda")
41
+
42
+ image = pipe(
43
+ "A majestic mountain landscape reflected in a crystal clear alpine lake at golden hour",
44
+ num_inference_steps=28,
45
+ guidance_scale=5.0,
46
+ height=1024,
47
+ width=1024,
48
+ ).images[0]
49
+
50
+ image.save("output.png")
51
+ ```
52
+
53
+ ## Model Details
54
 
55
  | Property | Value |
56
  |----------|-------|
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
+ ## Intended Use
64
 
65
+ - High-quality image generation
66
+ - Creative and artistic production
67
+ - Marketing and design assets
68
+ - Research and experimentation
69
 
70
+ ## Limitations
71
 
72
+ - Slower inference compared to Zen3 Image Fast
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
+ ## Citation
78
+
79
+ ```bibtex
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
+ ## Links
89
 
90
+ - [Zen Model Family](https://huggingface.co/zenlm)
91
+ - [Hanzo AI](https://hanzo.ai)