Celebs + flux
Collection
duhh
•
65 items
•
Updated
•
9
(CivitAI)
Defiantly one of my favourites from the 80's and 90's
don't forget to follow me for more!!!
Niko3DX
You should use mryan
to trigger the image generation.
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/meg-ryan', weight_name='meg-ryan.safetensors')
image = pipeline('color photo, vibrant colours, photo of a female, walking in New York City , short hair,').images[0]
For more details, including weighting, merging and fusing LoRAs, check the documentation on loading LoRAs in diffusers
Base model
black-forest-labs/FLUX.1-dev