Views
No views yet

dahyunwiro to trigger the image generation.1from diffusers import FluxPipeline
2import torch
3
4pipeline = FluxPipeline.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to('cuda')
5pipeline.load_lora_weights('WiroAI/Dahyun-Flux-LoRA', weight_name='dahyun_flux_lora.safetensors')
6image = pipeline('dahyunwiro, A young woman with shoulder-length brown hair, wearing a denim jacket and white sneakers, walking down a busy city street.').images[0]
7image.save("output.png")