Views
No views yet
ohwx to trigger the image generation.1from diffusers import AutoPipelineForText2Image
2import torch
3
4device = "cuda" if torch.cuda.is_available() else "cpu"
5
6pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to(device)
7pipeline.load_lora_weights('Keltezaa/rachael-leigh-cook-2000s-flux', weight_name='RachaelLeighCook_flux_lora_v1.safetensors')
8image = pipeline('Breathtaking medium shot photography of ohwx, (Halter neck top with open back and floral embroidery:1.3) , mystical Vale of Avalon,style by Miwa Komatsu,soft lighting, upper body shot, collarbone, smile, (upper body framing:1.3), bare shoulder, detailed texture quality wool top, simple black choker, sensual lips, eyelashes, (entirely visible beautiful hairstyle:1.2), fine hair detail, perfect eyes, iris pattern, eyes makeup, (perfectly sharp:1.3), (head to shoulders composition:1.4), realistic textures, (deep focus:1.1), negative space around subject, 8k uhd, dslr, ultra high quality image, film grain, Fujifilm XT3').images[0]