Eva Green FLux
(CivitAI)
Model description
Token: eva gren (not eva "green" since I don't want the token to be mistaken with a color)
Trigger words
You should use eva gren
to trigger the image generation.
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/eva-green-flux', weight_name='eva_green_flux_lora_v1_000001200.safetensors')
image = 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]
For more details, including weighting, merging and fusing LoRAs, check the documentation on loading LoRAs in diffusers