👖

Denim VTON LoRA (SDXL)

Virtual Try-On & Denim Fabric Texture Studio

Denim Virtual Try-On LoRA Studio

Generate high-fidelity denim apparel, fabric textures, jackets, and vintage denim garments powered by SDXL 1.0 and LoRA weights.

Trigger Prompt: a garment with denim fabric texture
⚙️ Generation Parameters
Vintage Jeans Denim Jacket Distressed Vest Denim Jumpsuit
1.0
7.5
30
🖼️ Result Preview Ready
Denim LoRA Preview
💻 Run Locally with PyTorch

Copy this snippet to use zyuzuguldu/vton-lora-denim in Python:

import torch
from diffusers import DiffusionPipeline

pipe = DiffusionPipeline.from_pretrained(
    "stabilityai/stable-diffusion-xl-base-1.0",
    torch_dtype=torch.float16
).to("cuda")

pipe.load_lora_weights("zyuzuguldu/vton-lora-denim")

prompt = "a garment with denim fabric texture, denim jacket, high resolution"
image = pipe(
    prompt,
    cross_attention_kwargs={"scale": 1.0}
).images[0]

image.save("denim_outfit.png")