z-image-turbo loras
Collection
9 items โข Updated
A LoRA adapter trained for the concept/style "a-cold-wall".
Use this token in your prompt:
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 detail(Adjust LoRA strength to taste, e.g. 0.6โ1.0.)
Depending on your setup, you may need to use the correct pipeline class for Z-Image-Turbo.
import torch
from diffusers import DiffusionPipeline
pipe = DiffusionPipeline.from_pretrained(
"Tongyi-MAI/Z-Image-Turbo",
torch_dtype=torch.bfloat16
).to("cuda")
pipe.load_lora_weights("thorjank/a-cold-wall-lora", weight_name="a-cold-wall.safetensors")
prompt = "a-cold-wall, fashion outfits, editorial photo, high detail"
image = pipe(prompt).images[0]
image.save("out.png")
Base model
Tongyi-MAI/Z-Image-Turbo