Spaces:
Sleeping
Sleeping
File size: 12,310 Bytes
b30e434 c8a5fa7 b30e434 60ca122 b30e434 8a1cbae b30e434 c8a5fa7 8a1cbae b30e434 c8a5fa7 b30e434 c8a5fa7 b30e434 c8a5fa7 b30e434 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 | import gradio as gr
import numpy as np
import torch, random, json, spaces, time
from ulid import ULID
from diffsynth.pipelines.z_image import (
ModelConfig, ZImageUnit_Image2LoRAEncode, ZImageUnit_Image2LoRADecode
)
from diffsynth.pipelines.z_image import ZImagePipeline as ZImagePipelineDs
from diffusers import ZImagePipeline
from safetensors.torch import save_file
import torch
from PIL import Image
from pathlib import Path
from huggingface_hub import snapshot_download
import glob
DTYPE = torch.bfloat16
MAX_SEED = np.iinfo(np.int32).max
MODELS_DIR = Path("./models")
def download_hf_models(output_dir: Path) -> dict:
"""
Download required models from Hugging Face using huggingface_hub.
Downloads:
- DiffSynth-Studio/Z-Image-i2L
- Tongyi-MAI/Z-Image
- DiffSynth-Studio/General-Image-Encoders
- Tongyi-MAI/Z-Image-Turbo
Returns dict with paths to downloaded models.
"""
output_dir.mkdir(parents=True, exist_ok=True)
models = [
{
"repo_id": "DiffSynth-Studio/General-Image-Encoders",
"description": "General Image Encoders (SigLIP2-G384, DINOv3-7B)",
"allow_patterns": None,
},
{
"repo_id": "Tongyi-MAI/Z-Image-Turbo",
"description": "Z-Image Turbo",
"allow_patterns": None,
},
{
"repo_id": "Tongyi-MAI/Z-Image",
"description": "Z-Image base model (transformer)",
"allow_patterns": ["transformer/*.safetensors"],
},
{
"repo_id": "DiffSynth-Studio/Z-Image-i2L",
"description": "Z-Image-i2L (Image to LoRA model)",
"allow_patterns": ["*.safetensors"],
},
]
downloaded_paths = {}
for model in models:
repo_id = model["repo_id"]
local_dir = output_dir / repo_id
# Check if already downloaded
if local_dir.exists() and any(local_dir.rglob("*.safetensors")):
print(f" ✓ {repo_id} (already downloaded)")
downloaded_paths[repo_id] = local_dir
continue
print(f" 📥 Downloading {repo_id}...")
print(f" {model['description']}")
try:
result_path = snapshot_download(
repo_id=repo_id,
local_dir=str(local_dir),
allow_patterns=model["allow_patterns"],
local_dir_use_symlinks=False,
resume_download=True,
)
downloaded_paths[repo_id] = Path(result_path)
print(f" ✓ {repo_id}")
except Exception as e:
print(f" ❌ Error downloading {repo_id}: {e}")
raise
return downloaded_paths
def get_model_files(base_path: Path, pattern: str) -> list:
"""Get list of files matching a glob pattern."""
full_pattern = str(base_path / pattern)
files = sorted(glob.glob(full_pattern))
return files
downloaded_paths = download_hf_models(MODELS_DIR)
zimage_path = MODELS_DIR / "Tongyi-MAI" / "Z-Image"
zimage_transformer_files = get_model_files(zimage_path, "transformer/*.safetensors")
# Z-Image-Turbo
zimage_turbo_path = MODELS_DIR / "Tongyi-MAI" / "Z-Image-Turbo"
text_encoder_files = get_model_files(zimage_turbo_path, "text_encoder/*.safetensors")
vae_file = get_model_files(zimage_turbo_path, "vae/diffusion_pytorch_model.safetensors")
tokenizer_path = zimage_turbo_path / "tokenizer"
# General Image Encoders
encoders_path = MODELS_DIR / "DiffSynth-Studio" / "General-Image-Encoders"
siglip_file = get_model_files(encoders_path, "SigLIP2-G384/model.safetensors")
dino_file = get_model_files(encoders_path, "DINOv3-7B/model.safetensors")
# Z-Image-i2L from HuggingFace
zimage_i2l_path = MODELS_DIR / "DiffSynth-Studio" / "Z-Image-i2L"
zimage_i2l_file = get_model_files(zimage_i2l_path, "model.safetensors")
print(f" Z-Image transformer: {len(zimage_transformer_files)} file(s)")
print(f" Text encoder: {len(text_encoder_files)} file(s)")
print(f" VAE: {len(vae_file)} file(s)")
print(f" Tokenizer: {tokenizer_path}")
print(f" SigLIP2: {len(siglip_file)} file(s)")
print(f" DINOv3: {len(dino_file)} file(s)")
print(f" Z-Image-i2L: {len(zimage_i2l_file)} file(s)")
################
vram_config = {
"offload_dtype": torch.bfloat16,
"offload_device": "cuda",
"onload_dtype": torch.bfloat16,
"onload_device": "cuda",
"preparing_dtype": torch.bfloat16,
"preparing_device": "cuda",
"computation_dtype": torch.bfloat16,
"computation_device": "cuda",
}
model_configs = [
# All models from HuggingFace - use path= for local files
ModelConfig(path=zimage_transformer_files, **vram_config),
ModelConfig(path=text_encoder_files),
ModelConfig(path=vae_file),
ModelConfig(path=siglip_file),
ModelConfig(path=dino_file),
ModelConfig(path=zimage_i2l_file),
]
pipe_lora = ZImagePipelineDs.from_pretrained(
torch_dtype=torch.bfloat16,
device="cuda",
model_configs=model_configs,
tokenizer_config=ModelConfig(path=str(tokenizer_path)),
)
pipe_imagen = ZImagePipeline.from_pretrained(
"./models/Tongyi-MAI/Z-Image-Turbo",
torch_dtype=torch.bfloat16,
low_cpu_mem_usage=False,
)
pipe_imagen.to("cuda")
@spaces.GPU(duration=120)
def generate_lora(
input_images,
progress=gr.Progress(track_tqdm=True),
):
ulid = str(ULID()).lower()[:12]
print(f"ulid: {ulid}")
if not input_images:
print("images are empty.")
return False
progress(0.1, desc="Processing images...")
print("progress: step 1")
# pil_images = [Image.open(filepath).convert("RGB") for filepath, _ in input_images]
pil_images = []
for img in input_images:
if isinstance(img, str):
pil_images.append(Image.open(img).convert("RGB"))
elif isinstance(img, tuple):
pil_images.append(Image.open(img[0]).convert("RGB"))
else:
pil_images.append(Image.fromarray(img).convert("RGB"))
progress(0.3, desc="Encoding images to LoRA...")
print("progress: step 2")
# Model inference
with torch.no_grad():
embs = ZImageUnit_Image2LoRAEncode().process(pipe_lora, image2lora_images=pil_images)
progress(0.7, desc="Decoding LoRA weights...")
print("progress: step 3")
lora = ZImageUnit_Image2LoRADecode().process(pipe_lora, **embs)["lora"]
progress(0.9, desc="Saving LoRA file...")
print("progress: step 4")
lora_name = f"{ulid}.safetensors"
lora_path = f"loras/{lora_name}"
progress(1.0, desc="Done!")
save_file(lora, lora_path)
return lora_name, gr.update(interactive=True, value=lora_path), gr.update(interactive=True)
@spaces.GPU
def generate_image(
lora_name,
prompt,
negative_prompt="blurry ugly bad",
width=1024,
height=1024,
seed=42,
randomize_seed=True,
guidance_scale=3.5,
num_inference_steps=8,
progress=gr.Progress(track_tqdm=True),
):
lora_path = f"loras/{lora_name}"
pipe_imagen.clear_lora()
pipe_imagen.load_lora(pipe_imagen.dit, lora_path)
if randomize_seed:
seed = random.randint(0, MAX_SEED)
generator = torch.Generator().manual_seed(seed)
output_image = pipe_imagen(
prompt=prompt,
negative_prompt=negative_prompt,
num_inference_steps=num_inference_steps,
width=width,
height=height,
# generator=generator,
# true_cfg_scale=guidance_scale,
# guidance_scale=1.0 # Use a fixed default for distilled guidance
)
return output_image, seed
return True
def read_file(path: str) -> str:
with open(path, 'r', encoding='utf-8') as f:
content = f.read()
return content
css = """
#col-container {
margin: 0 auto;
max-width: 960px;
}
h3{
text-align: center;
display:block;
}
"""
with open('examples/0_examples.json', 'r') as file: examples = json.load(file)
print(examples)
with gr.Blocks() as demo:
with gr.Column(elem_id="col-container"):
with gr.Column():
gr.HTML(read_file("static/header.html"))
with gr.Row():
with gr.Column():
input_images = gr.Gallery(
label="Input images",
file_types=["image"],
show_label=False,
elem_id="gallery",
columns=2,
object_fit="cover",
height=300)
lora_button = gr.Button("Generate LoRA", variant="primary")
with gr.Column():
lora_name = gr.Textbox(label="Generated LoRA path",lines=2, interactive=False)
lora_download = gr.DownloadButton(label=f"Download LoRA", interactive=False)
with gr.Column(elem_id='imagen-container') as imagen_container:
gr.Markdown("### After your LoRA is ready, you can try generate image here.")
with gr.Row():
with gr.Column():
prompt = gr.Textbox(
label="Prompt",
show_label=False,
lines=2,
placeholder="Enter your prompt",
value="a man in a fishing boat.",
container=False,
)
imagen_button = gr.Button("Generate Image", variant="primary", interactive=False)
with gr.Accordion("Advanced Settings", open=False):
negative_prompt = gr.Textbox(
label="Negative prompt",
lines=2,
container=False,
placeholder="Enter your negative prompt",
value="blurry ugly bad"
)
num_inference_steps = gr.Slider(
label="Steps",
minimum=1,
maximum=50,
step=1,
value=25,
)
with gr.Row():
width = gr.Slider(
label="Width",
minimum=512,
maximum=1280,
step=32,
value=768,
)
height = gr.Slider(
label="Height",
minimum=512,
maximum=1280,
step=32,
value=1024,
)
with gr.Row():
seed = gr.Slider(
label="Seed",
minimum=0,
maximum=MAX_SEED,
step=1,
value=42,
)
guidance_scale = gr.Slider(
label="Guidance scale",
minimum=0.0,
maximum=10.0,
step=0.1,
value=3.5,
)
randomize_seed = gr.Checkbox(label="Randomize seed", value=False)
with gr.Column():
output_image = gr.Image(label="Generated image", show_label=False)
gr.Examples(examples=examples, inputs=[input_images])
gr.Markdown(read_file("static/footer.md"))
lora_button.click(
fn=generate_lora,
inputs=[
input_images
],
outputs=[lora_name, lora_download, imagen_button],
)
imagen_button.click(
fn=generate_image,
inputs=[
lora_name,
prompt,
negative_prompt,
width,
height,
seed,
randomize_seed,
guidance_scale,
num_inference_steps,
],
outputs=[output_image, seed],
)
if __name__ == "__main__":
demo.launch(mcp_server=True, css=css)
|