SDXL Dev Models
Collection
Are just in initial stage sdxl LoRA • 17 items • Updated • 6
How to use prithivMLmods/Canopus-Walking-Dead-adp-LoRA with Diffusers:
pip install -U diffusers transformers accelerate
import torch
from diffusers import DiffusionPipeline
# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("stabilityai/stable-diffusion-xl-base-1.0", dtype=torch.bfloat16, device_map="cuda")
pipe.load_lora_weights("prithivMLmods/Canopus-Walking-Dead-adp-LoRA")
prompt = "A portrait of Daryl Dixon from the walking dead, action pose, blood stains, battle flames background, anime style, high resolution, <lora:walking_dead_offset:1>"
image = pipe(prompt).images[0]


Canopus-Walking-Dead-adp-LoRA
Image Processing Parameters
| Parameter | Value | Parameter | Value |
|---|---|---|---|
| LR Scheduler | constant | Noise Offset | 0.03 |
| Optimizer | AdamW | Multires Noise Discount | 0.1 |
| Network Dim | 64 | Multires Noise Iterations | 10 |
| Network Alpha | 32 | Repeat | 20 |
| Epoch | 10 | Save Every N Epochs | 1 |
pipe = StableDiffusionXLPipeline.from_pretrained(
"-------------xxxxxxxxx----------",
torch_dtype=torch.float16,
use_safetensors=True,
)
(or)
-----------------------------------------------------------
pipe = StableDiffusionXLPipeline.from_pretrained(
"stabilityai/stable-diffusion-xl-base-1.0",
torch_dtype=torch.float16,
use_safetensors=True,
)
pipe.scheduler = EulerAncestralDiscreteScheduler.from_config(pipe.scheduler.config)
pipe.load_lora_weights("Canopus-Walking-Dead-adp-LoRA", weight_name="Canopus-Walking-Dead-adp-LoRA.safetensors", adapter_name="rlms")
pipe.set_adapters("rlms")
pipe.to("cuda")
A portrait of Daryl Dixon from the walking dead, action pose, blood stains, battle flames background, anime style, high resolution, <lora:walking_dead_offset:1>
A photorealistic portrait of a post-apocalyptic Tino Asprilla, in a detailed digital painting with gritty textures, inspired by the Walking Dead franchise
Zombie family on the cover of a horror novel,different cinematic scenes, walking dead
| Parameter | Value |
|---|---|
| Prompt | A portrait of Daryl Dixon from the walking dead, action pose, blood stains, battle flames background, anime style, high resolution, lora:walking_dead_offset:1 |
| Sampler | euler |
You should use Walking Dead to trigger the image generation.
Weights for this model are available in Safetensors format.
Download them in the Files & versions tab.
Base model
stabilityai/stable-diffusion-xl-base-1.0