Katy Perry (Flux)
(CivitAI)
Model description
Katy Perry -Trained for Flux
Download model
Weights for this model are available in Safetensors format.
Download them in the Files & versions tab.
from diffusers import AutoPipelineForText2Image
import torch
device = "cuda" if torch.cuda.is_available() else "cpu"
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to(device)
pipeline.load_lora_weights('Keltezaa/katy-perry-flux', weight_name='Katy_Perry_Flux.safetensors')
image = pipeline(' beautiful detailed photograph, wearing a dress, short hair curled at the bottom, standing in a joyful forest clearing. dressed as snow white, closeup shot').images[0]
For more details, including weighting, merging and fusing LoRAs, check the documentation on loading LoRAs in diffusers