Views
No views yet
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 light1import 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/double-denim-ny-lora", weight_name="<YOUR_LORA_FILENAME>.safetensors")
10
11prompt = "double-denim-ny, street style photo, denim jacket and jeans, natural light"
12image = pipe(prompt).images[0]
13image.save("out.png")