Norod78/but-the-old-gods-are-rising-sdxl
121
But the old gods are rising [SDXL]
<Gallery />
(CivitAI)
Model description
<p>It's just like your regular prompt "<strong>but the old gods are rising</strong>" in addition</p>
Trigger words
You should use but the old gods are rising 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
pipeline = AutoPipelineForText2Image.from_pretrained('stabilityai/stable-diffusion-xl-base-1.0', torch_dtype=torch.float16).to('cuda')
pipeline.load_lora_weights('Norod78/but-the-old-gods-are-rising-sdxl', weight_name='Old_gods_rising_SDXL.safetensors')
image = pipeline('A socially awkward potato but the old gods are rising ').images[0]For more details, including weighting, merging and fusing LoRAs, check the documentation on loading LoRAs in diffusers
