Views
No views yet
| Product Sample 1 | Product Sample 2 |
|---|---|
| Product Sample 3 | Product Sample 4 |
|---|---|
3Dghostmannequin3Dghostmannequin, plain white background, studio lighting, detailed fabric...).20 – 302.0 – 4.00.8 – 1.0 (Adjust based on garment complexity)4 steps (Highly optimized for rapid generation)1.0 (Strictly required for distilled/schnell base models)0.85 – 1.0ComfyUI/models/loras/ directory.3Dghostmannequin at the beginning of your prompt.1from diffusers import FluxPipeline
2import torch
3
4pipe = FluxPipeline.from_pretrained(
5 "black-forest-labs/FLUX.2-klein-base-9B",
6 torch_dtype=torch.bfloat16
7).to("cuda")
8
9pipe.load_lora_weights("nhathoangfoto/FLUX.2-klein-ghost-mannequin", adapter_name="ghostmannequin")
10pipe.set_adapters(["ghostmannequin"], adapter_weights=[0.85])
11
12# For Distilled Model usage:
13# result = pipe(prompt="3Dghostmannequin, highly detailed...", num_inference_steps=4, guidance_scale=1.0)