Keltezaa/movie-poster-ce-sdxl-flux
2132
Movie Poster - CE - SDXL & Flux
<Gallery />
(CivitAI)
Model description
<p><strong>Please share your creations. I would love to see how you have used the LoRA.</strong></p><p>Weight around 1.0 suits most pictures.</p><p>Please do not distribute this LoRA to other platforms. I will be very cranky if I discover it elsewhere.</p><p>Whilst I would appreciate credit in your images, I am not insisting on it.</p>
Trigger words
You should use mvpstrCE style to trigger the image generation.
Download model
Weights for this model are available in Safetensors format.
Download them in the Files & versions tab.
Use it with the 🧨 diffusers library
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/movie-poster-ce-sdxl-flux', weight_name='MoviePoster03-02_CE_FLUX_128AIT.safetensors')
image = pipeline('Movie Poster. Bloody Title: "THE BAD SEED". Subtitle: "EVIL IS SOMETIMES DISGUISED".
a girl holding a knife behind her back. She has pigtails and stands on a dock, hiding a knife behind her back. Viewed from behind.
atmospheric, foggy, spooky. Nighttime. Full moon.
Soft watercolour.
mvpstrCE style').images[0]For more details, including weighting, merging and fusing LoRAs, check the documentation on loading LoRAs in diffusers
