Stable Diffusion
Collection
16 items
•
Updated
(CivitAI)
Use -Realvis versions together with RealisticVision 5.1 for replicable results.
Suggested weights
Weight: 0.6 - 0.7
Bleeds quite a bit into the model.
Was trained on an internal model so you wont get the exact crisp results as in the promotion images.
Models like cyberrealistic, realisticVision and photoMovie tend to come close with the original LoRA. Otherwise use the -RealVis version.
You should use emma2009 woman
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('runwayml/stable-diffusion-v1-5', torch_dtype=torch.float16).to(device)
pipeline.load_lora_weights('Keltezaa/emma-watson-2009-2010', weight_name='EmmaWatson09-10_v1.0.1b.safetensors')
image = pipeline('Photograph of emma2009 woman, in a fantasy time period, wearing a crystal (armor, crystal4rmor). ').images[0]
For more details, including weighting, merging and fusing LoRAs, check the documentation on loading LoRAs in diffusers
Base model
runwayml/stable-diffusion-v1-5