WizWhite/wizard-s-celestial-dream
Wizard's Celestial Dream
<Gallery />
Model description
<h1 id="-tp2xf1wmh"><strong><span style="color:rgb(21, 170, 191)">■</span><span style="color:rgb(34, 139, 230)">■</span><span style="color:rgb(76, 110, 245)">■</span><span style="color:rgb(121, 80, 242)">■</span><span style="color:#e04c96">■</span></strong></h1><p><strong>Dreamy iridescent aesthetics</strong> Illustration LoRA with hazy holographic mood. Made from a mixed dataset with random images that had the same feel to them, and shared the rough color scheme (teal, blue purple, pink).</p><p><span style="color:rgb(193, 194, 197)">Recommended settings (feel free to experiment):, </span><br /><span style="color:rgb(193, 194, 197)">Trigger: </span><code>w1z_dr34m, dreamy illustration</code><br /><span style="color:rgb(193, 194, 197)">LoRA Strength: </span><code>1.0 - 1.2</code><br /><span style="color:rgb(193, 194, 197)">Guidance: </span><code>3.5 - 5.0</code><br /><span style="color:rgb(193, 194, 197)">Steps: </span><code>26</code></p><p><span style="color:rgb(193, 194, 197)">Prompt inspiration: </span><br /><code>iridescent</code><span style="color:rgb(193, 194, 197)">,</span> <code>holographic</code><span style="color:rgb(193, 194, 197)">,</span> <code>bioluminescent</code><span style="color:rgb(193, 194, 197)">,</span> <code>ethereal</code><span style="color:rgb(193, 194, 197)">,</span> <code>holographic</code><span style="color:rgb(193, 194, 197)">,</span> <code>celestial</code><span style="color:rgb(193, 194, 197)">,</span> <code>pearlescent</code><span style="color:rgb(193, 194, 197)">,</span><code>shimmering</code><span style="color:rgb(193, 194, 197)">,</span><code>starlight</code><span style="color:rgb(193, 194, 197)">,</span><code>luminous</code><span style="color:rgb(193, 194, 197)">,</span></p>
Trigger words
You should use w1z_dr34m, dreamy illustration to trigger the 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)
pipe.load_lora_weights('WizWhite/wizard-s-celestial-dream', weight_name='w1z-dr34m.safetensors')
image = pipeline('w1z_dr34m, dreamy illustration, silhouette profile of a iridescent old wizard whitebeard with a long flowing white beard that arcs like a living ribbon of energy. celestial light. the atmosphere is otherworldly, and dreamlike. Vibrant holographic effect.
').images[0]For more details, including weighting, merging and fusing LoRAs, check the documentation on loading LoRAs in diffusers
