Views
No views yet
eva gren 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/eva-green-flux', weight_name='eva_green_flux_lora_v1_000001200.safetensors')
8image = pipeline('portrait of a gorgeous eva_gren princesse, dynamic lighting, in the style of Jean-Baptiste Monge, dark ambiance, ink slpatters, flowers, realistic, sharp focus, illustration, octane render, unreal engine, 8k, high resolution, trending on artstation, sharp focus, studio photo, intricate details, highly detailed, by greg rutkowski, sharp focus, emitting diodes, smoke, artillery, sparks, racks, system unit, motherboard, by pascal blanche rutkowski repin artstation hyperrealism painting concept art of detailed character design matte painting, 4 k resolution blade runner , ').images[0]