Views
No views yet
| Name | Description |
|---|---|
| Z-Image-Fun-Controlnet-Union-2.1.safetensors | ControlNet weights for Z-Image. The model supports multiple control conditions such as Canny, Depth, Pose, MLSD, Scribble, Hed and Gray. This ControlNet is added on 15 layer blocks and 2 refiner layer blocks. |
| Z-Image-Fun-Controlnet-Union-2.1-lite.safetensors | Compared to the large version of the model, fewer layers have control added, resulting in weaker control conditions. This makes it suitable for larger control_context_scale values, and the generation results appear more natural. It is also suitable for lower-spec machines. |
| Z-Image-Fun-Controlnet-Tile-2.1.safetensors | A Tile model trained on high-definition datasets (up to 2048×2048) for super-resolution. |
| Z-Image-Fun-Controlnet-Tile-2.1-lite.safetensors | Applied control latents to fewer layers, resulting in weaker control. This allows for larger control_context_scale values with more natural results, and is also better suited for lower-spec machines. |
| Inpaint | Output |
![]() ![]() | ![]() |
| Pose + Inpaint | Output |
![]() ![]() ![]() | ![]() |
| Pose | Output |
![]() | ![]() |
| Pose | Output |
![]() | ![]() |
| Pose | Output |
![]() | ![]() |
| Canny | Output |
![]() | ![]() |
| HED | Output |
![]() | ![]() |
| Depth | Output |
![]() | ![]() |
| Gray | Output |
![]() | ![]() |
| Low Resolution | High Resolution |
![]() | ![]() |
1# Clone the code
2git clone https://github.com/aigc-apps/VideoX-Fun.git
3
4# Enter VideoX-Fun's directory
5cd VideoX-Fun
6
7# Create model directories
8mkdir -p models/Diffusion_Transformer
9mkdir -p models/Personalized_Model📦 models/
├── 📂 Diffusion_Transformer/
│ └── 📂 Z-Image/
├── 📂 Personalized_Model/
│ ├── 📦 Z-Image-Fun-Controlnet-Union-2.1.safetensors
│ └── 📦 Z-Image-Fun-Controlnet-Union-2.1-lite.safetensorsexamples/z_image_fun/predict_t2i_control_2.1.py and examples/z_image_fun/predict_i2i_inpaint_2.1.py.