Text-to-Image
Diffusers
Safetensors
GGUF
ZImagePipeline
image-to-image
inpainting
controlnet
z-image-turbo
Instructions to use elismasilva/z-image-control-turbo-unified-v2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use elismasilva/z-image-control-turbo-unified-v2 with Diffusers:
pip install -U diffusers transformers accelerate
from diffusers import ControlNetModel, StableDiffusionControlNetPipeline controlnet = ControlNetModel.from_pretrained("elismasilva/z-image-control-turbo-unified-v2") pipe = StableDiffusionControlNetPipeline.from_pretrained( "fill-in-base-model", controlnet=controlnet ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
Commit ·
6dc45e0
1
Parent(s): 3c66dd7
update README with Q8 info.
Browse files
README.md
CHANGED
|
@@ -18,7 +18,7 @@ pipeline_tag: text-to-image
|
|
| 18 |
|
| 19 |
This repository hosts the **Z-Image Turbo Control Unified V2** model. This is a specialized architecture that unifies the powerful **Z-Image Turbo** base transformer with enhanced **ControlNet** capabilities into a single, cohesive model. This unified pipeline supports multiple generation modes in one place: **Text-to-Image, Image-to-Image, ControlNet, and Inpainting**.
|
| 20 |
|
| 21 |
-
Unlike traditional pipelines where ControlNet is an external add-on, this model integrates control layers directly into the transformer structure. This enables **Unified GGUF Quantization**, allowing the entire merged architecture (Base + Control) to be quantized (e.g., Q4_K_M) and run efficiently on consumer hardware with limited VRAM. This version also introduces significant optimizations, architectural improvements, and bug fixes for features like `group_offload`.
|
| 22 |
|
| 23 |
## 📥 Installation
|
| 24 |
|
|
@@ -43,7 +43,8 @@ pip install -r requirements.txt
|
|
| 43 |
|
| 44 |
## 📂 Repository Structure
|
| 45 |
|
| 46 |
-
* `./transformer/z_image_turbo_control_unified_v2.1_q4_k_m.gguf`: The unified, quantized model weights.
|
|
|
|
| 47 |
* `infer_controlnet.py`: Script for running controlnet inference.
|
| 48 |
* `infer_inpaint.py`: Script for running inpaint inference.
|
| 49 |
* `infer_t2i.py`: Script for running text-to-image inference.
|
|
|
|
| 18 |
|
| 19 |
This repository hosts the **Z-Image Turbo Control Unified V2** model. This is a specialized architecture that unifies the powerful **Z-Image Turbo** base transformer with enhanced **ControlNet** capabilities into a single, cohesive model. This unified pipeline supports multiple generation modes in one place: **Text-to-Image, Image-to-Image, ControlNet, and Inpainting**.
|
| 20 |
|
| 21 |
+
Unlike traditional pipelines where ControlNet is an external add-on, this model integrates control layers directly into the transformer structure. This enables **Unified GGUF Quantization**, allowing the entire merged architecture (Base + Control) to be quantized (e.g., Q4_K_M, Q8_0) and run efficiently on consumer hardware with limited VRAM. This version also introduces significant optimizations, architectural improvements, and bug fixes for features like `group_offload`.
|
| 22 |
|
| 23 |
## 📥 Installation
|
| 24 |
|
|
|
|
| 43 |
|
| 44 |
## 📂 Repository Structure
|
| 45 |
|
| 46 |
+
* `./transformer/z_image_turbo_control_unified_v2.1_q4_k_m.gguf`: The unified, quantized Q4_K_M model weights.
|
| 47 |
+
* `./transformer/z_image_turbo_control_unified_v2.1_q8_0.gguf`: The unified, quantized Q8_0 model weights.
|
| 48 |
* `infer_controlnet.py`: Script for running controlnet inference.
|
| 49 |
* `infer_inpaint.py`: Script for running inpaint inference.
|
| 50 |
* `infer_t2i.py`: Script for running text-to-image inference.
|