WiroAI Flux Models
Collection
WiroAI's plug-and-play image generation models • 30 items • Updated • 3
import torch
from diffusers import DiffusionPipeline
# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("black-forest-labs/FLUX.1-dev", dtype=torch.bfloat16, device_map="cuda")
pipe.load_lora_weights("WiroAI/Hyunjin-Flux-LoRA")
prompt = "hyunjinwiro, a young Korean idol with soft blonde hair, flawless skin, and expressive brown eyes. He sits on a velvet couch in a luxurious studio, wearing a pastel sweater and silver accessories. Ultra-HD, realistic, focusing on his gentle charisma and intricate details."
image = pipe(prompt).images[0]
This LoRA is trained for anyone who like Hyunjin from Stray Kids.

You should use hyunjinwiro to trigger the image generation.
from diffusers import FluxPipeline
import torch
pipeline = FluxPipeline.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to('cuda')
pipeline.load_lora_weights('WiroAI/Hyunjin-Flux-LoRA', weight_name='hyunjin_flux_lora.safetensors')
image = pipeline('hyunjinwiro, a young Korean idol with soft blonde hair, flawless skin, and expressive brown eyes. He sits on a velvet couch in a luxurious studio, wearing a pastel sweater and silver accessories. Ultra-HD, realistic, focusing on his gentle charisma and intricate details.').images[0]
image.save("output.png")
Base model
black-forest-labs/FLUX.1-dev