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/Karina-Flux-LoRA")
prompt = "krnwiro, realistic portrait, a gorgeous woman with black eyes and long dark wavy, wearing a deep green velvet cloak, standing in a mystical forest, soft moonlight illuminating her pale skin, delicate freckles across her nose, gentle smile, ethereal atmosphere, glowing fireflies floating around her"
image = pipe(prompt).images[0]
This LoRA is trained for anyone who like Karina from Aespa.



You should use krnwiro 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/Karina-Flux-LoRA', weight_name='karina_flux_lora.safetensors')
image = pipeline('krnwiro, A young woman with wavy black hair, wearing a red dress, sitting at a café table with a cup of coffee, looking thoughtful.').images[0]
image.save("output.png")
Base model
black-forest-labs/FLUX.1-dev