Flux Models
Collection
Flux Models
•
21 items
•
Updated
(CivitAI)
Please share your creations. I would love to see how you have used the LoRA.
Weight around 1.0 suits most pictures.
Please do not distribute this LoRA to other platforms. I will be very cranky if I discover it elsewhere.
Whilst I would appreciate credit in your images, I am not insisting on it.
You should use mvpstrCE style
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/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
Base model
black-forest-labs/FLUX.1-dev