z-image-turbo loras
Collection
9 items β’ Updated
LoRA adapter trained for the concept/style "double-denim-ny".
Use this token in your prompt:
double-denim-ny*.safetensors β LoRA weightsconfig.yaml β training configurationlog.txt β training log.safetensors file into your LoRA folder.double-denim-ny, street style photo, denim jacket and jeans, natural light(Adjust LoRA strength to taste, e.g. 0.6β1.0.)
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/double-denim-ny-lora", weight_name="<YOUR_LORA_FILENAME>.safetensors")
prompt = "double-denim-ny, street style photo, denim jacket and jeans, natural light"
image = pipe(prompt).images[0]
image.save("out.png")
Base model
Tongyi-MAI/Z-Image-Turbo