Keltezaa/danielle-rose-russell-sololora
113
Danielle Rose Russell SoloLoRA
<Gallery />
Model description
<h3 id="danielle-rose-russell-an-american-actress.-co7hq7ti1">Danielle Rose Russell, an American actress.</h3><p></p><p><img src="https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/1355e708-bd89-4be2-8789-63b82f6e0d73/width=525/1355e708-bd89-4be2-8789-63b82f6e0d73.jpeg" /><span style="color:rgb(250, 176, 5)">TI(Embedding) version: </span><a target="_blank" rel="ugc" href="https://civitai.com/models/782089/danielle-rose-russell-soloti">https://civitai.com/models/782089/danielle-rose-russell-soloti</a></p>
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/danielle-rose-russell-sololora', weight_name='DanielleRR_SoloLoRA_F1V1.safetensors')
image = pipeline('half-body portrait of a woman, in a romantic fantasy setting.
chin-length blonde bob cut, softly styled, with gentle waves framing her face, natural makeup with soft pink lips and a dreamy glow.
wearing a delicate pastel-colored gown, adorned with lace and subtle shimmer, complemented by a sparkling crystal necklace.
standing in an enchanted garden, surrounded by glowing flowers and floating lanterns, hands lightly clasped, gazing upward with a serene smile, as soft light reflects off her hair.
muted pastel tones, ethereal lighting, magical atmosphere, enchanting, whimsical, and cinematic fantasy quality.').images[0]For more details, including weighting, merging and fusing LoRAs, check the documentation on loading LoRAs in diffusers
