Update README.md
Browse files
README.md
CHANGED
|
@@ -27,6 +27,55 @@ license: creativeml-openrail-m
|
|
| 27 |
|
| 28 |
Canopus-Walking-Dead-adp-LoRA
|
| 29 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 30 |
## Trigger words
|
| 31 |
|
| 32 |
You should use `Walking Dead` to trigger the image generation.
|
|
|
|
| 27 |
|
| 28 |
Canopus-Walking-Dead-adp-LoRA
|
| 29 |
|
| 30 |
+
Image Processing Parameters
|
| 31 |
+
|
| 32 |
+
| Parameter | Value | Parameter | Value |
|
| 33 |
+
|---------------------------|--------|---------------------------|--------|
|
| 34 |
+
| LR Scheduler | constant | Noise Offset | 0.03 |
|
| 35 |
+
| Optimizer | AdamW | Multires Noise Discount | 0.1 |
|
| 36 |
+
| Network Dim | 64 | Multires Noise Iterations | 10 |
|
| 37 |
+
| Network Alpha | 32 | Repeat | 20 |
|
| 38 |
+
| Epoch | 10 | Save Every N Epochs | 1 |
|
| 39 |
+
|
| 40 |
+
## SETTING-UP
|
| 41 |
+
|
| 42 |
+
```py
|
| 43 |
+
pipe = StableDiffusionXLPipeline.from_pretrained(
|
| 44 |
+
"-------------xxxxxxxxx----------",
|
| 45 |
+
torch_dtype=torch.float16,
|
| 46 |
+
use_safetensors=True,
|
| 47 |
+
)
|
| 48 |
+
(or)
|
| 49 |
+
-----------------------------------------------------------
|
| 50 |
+
pipe = StableDiffusionXLPipeline.from_pretrained(
|
| 51 |
+
"stabilityai/stable-diffusion-xl-base-1.0",
|
| 52 |
+
torch_dtype=torch.float16,
|
| 53 |
+
use_safetensors=True,
|
| 54 |
+
)
|
| 55 |
+
pipe.scheduler = EulerAncestralDiscreteScheduler.from_config(pipe.scheduler.config)
|
| 56 |
+
|
| 57 |
+
pipe.load_lora_weights("Canopus-Walking-Dead-adp-LoRA", weight_name="Canopus-Walking-Dead-adp-LoRA.safetensors", adapter_name="rlms")
|
| 58 |
+
pipe.set_adapters("rlms")
|
| 59 |
+
pipe.to("cuda")
|
| 60 |
+
```
|
| 61 |
+
|
| 62 |
+
|
| 63 |
+
## Trigger prompts
|
| 64 |
+
|
| 65 |
+
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>
|
| 66 |
+
|
| 67 |
+
|
| 68 |
+
A photorealistic portrait of a post-apocalyptic Tino Asprilla, in a detailed digital painting with gritty textures, inspired by the Walking Dead franchise
|
| 69 |
+
|
| 70 |
+
|
| 71 |
+
Zombie family on the cover of a horror novel,different cinematic scenes, walking dead
|
| 72 |
+
|
| 73 |
+
| Parameter | Value |
|
| 74 |
+
|-----------------|---------------------------------------------------------------------------------------|
|
| 75 |
+
| 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> |
|
| 76 |
+
| Sampler | euler |
|
| 77 |
+
|
| 78 |
+
|
| 79 |
## Trigger words
|
| 80 |
|
| 81 |
You should use `Walking Dead` to trigger the image generation.
|