Views
No views yet
a-cold-walla-cold-wall.safetensors — the LoRA weightsconfig.yaml, job_config.json — training configuration (for reproducibility)a-cold-wall.safetensors into your LoRA folder.a-cold-wall, fashion outfits, editorial photo, high detailDepending on your setup, you may need to use the correct pipeline class for Z-Image-Turbo.
1import torch
2from diffusers import DiffusionPipeline
3
4pipe = DiffusionPipeline.from_pretrained(
5 "Tongyi-MAI/Z-Image-Turbo",
6 torch_dtype=torch.bfloat16
7).to("cuda")
8
9pipe.load_lora_weights("thorjank/a-cold-wall-lora", weight_name="a-cold-wall.safetensors")
10
11prompt = "a-cold-wall, fashion outfits, editorial photo, high detail"
12image = pipe(prompt).images[0]
13image.save("out.png")