End of training
Browse files- .gitattributes +4 -0
- README.md +89 -0
- huggy_lora_edm_v2.safetensors +3 -0
- image_0.png +3 -0
- image_1.png +3 -0
- image_2.png +3 -0
- image_3.png +3 -0
- pytorch_lora_weights.safetensors +3 -0
.gitattributes
CHANGED
@@ -33,3 +33,7 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
image_0.png filter=lfs diff=lfs merge=lfs -text
|
37 |
+
image_1.png filter=lfs diff=lfs merge=lfs -text
|
38 |
+
image_2.png filter=lfs diff=lfs merge=lfs -text
|
39 |
+
image_3.png filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
@@ -0,0 +1,89 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
|
3 |
+
tags:
|
4 |
+
- stable-diffusion-xl
|
5 |
+
- stable-diffusion-xl-diffusers
|
6 |
+
- diffusers-training
|
7 |
+
- text-to-image
|
8 |
+
- diffusers
|
9 |
+
- lora
|
10 |
+
- template:sd-lora
|
11 |
+
|
12 |
+
- edm-training
|
13 |
+
inference:
|
14 |
+
parameters:
|
15 |
+
scheduler: EulerDiscreteScheduler
|
16 |
+
|
17 |
+
widget:
|
18 |
+
|
19 |
+
- text: 'a TOK emoji dressed as an easter bunny'
|
20 |
+
output:
|
21 |
+
url:
|
22 |
+
"image_0.png"
|
23 |
+
|
24 |
+
- text: 'a TOK emoji dressed as an easter bunny'
|
25 |
+
output:
|
26 |
+
url:
|
27 |
+
"image_1.png"
|
28 |
+
|
29 |
+
- text: 'a TOK emoji dressed as an easter bunny'
|
30 |
+
output:
|
31 |
+
url:
|
32 |
+
"image_2.png"
|
33 |
+
|
34 |
+
- text: 'a TOK emoji dressed as an easter bunny'
|
35 |
+
output:
|
36 |
+
url:
|
37 |
+
"image_3.png"
|
38 |
+
|
39 |
+
base_model: stabilityai/stable-diffusion-xl-base-1.0
|
40 |
+
instance_prompt: a TOK emoji
|
41 |
+
license: openrail++
|
42 |
+
---
|
43 |
+
|
44 |
+
# SDXL LoRA DreamBooth - linoyts/huggy_lora_edm_v2
|
45 |
+
|
46 |
+
<Gallery />
|
47 |
+
|
48 |
+
## Model description
|
49 |
+
|
50 |
+
### These are linoyts/huggy_lora_edm_v2 LoRA adaption weights for stabilityai/stable-diffusion-xl-base-1.0.
|
51 |
+
|
52 |
+
## Download model
|
53 |
+
|
54 |
+
### Use it with UIs such as AUTOMATIC1111, Comfy UI, SD.Next, Invoke
|
55 |
+
|
56 |
+
- **LoRA**: download **[`huggy_lora_edm_v2.safetensors` here 💾](/linoyts/huggy_lora_edm_v2/blob/main/huggy_lora_edm_v2.safetensors)**.
|
57 |
+
- Place it on your `models/Lora` folder.
|
58 |
+
- On AUTOMATIC1111, load the LoRA by adding `<lora:huggy_lora_edm_v2:1>` to your prompt. On ComfyUI just [load it as a regular LoRA](https://comfyanonymous.github.io/ComfyUI_examples/lora/).
|
59 |
+
|
60 |
+
|
61 |
+
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
|
62 |
+
|
63 |
+
```py
|
64 |
+
from diffusers import AutoPipelineForText2Image
|
65 |
+
import torch
|
66 |
+
|
67 |
+
pipeline = AutoPipelineForText2Image.from_pretrained('stabilityai/stable-diffusion-xl-base-1.0', torch_dtype=torch.float16).to('cuda')
|
68 |
+
pipeline.load_lora_weights('linoyts/huggy_lora_edm_v2', weight_name='pytorch_lora_weights.safetensors')
|
69 |
+
|
70 |
+
image = pipeline('a TOK emoji dressed as an easter bunny').images[0]
|
71 |
+
```
|
72 |
+
|
73 |
+
For more details, including weighting, merging and fusing LoRAs, check the [documentation on loading LoRAs in diffusers](https://huggingface.co/docs/diffusers/main/en/using-diffusers/loading_adapters)
|
74 |
+
|
75 |
+
## Trigger words
|
76 |
+
|
77 |
+
You should use a TOK emoji to trigger the image generation.
|
78 |
+
|
79 |
+
## Details
|
80 |
+
All [Files & versions](/linoyts/huggy_lora_edm_v2/tree/main).
|
81 |
+
|
82 |
+
The weights were trained using [🧨 diffusers Advanced Dreambooth Training Script](https://github.com/huggingface/diffusers/blob/main/examples/advanced_diffusion_training/train_dreambooth_lora_sdxl_advanced.py).
|
83 |
+
|
84 |
+
LoRA for the text encoder was enabled. False.
|
85 |
+
|
86 |
+
Pivotal tuning was enabled: False.
|
87 |
+
|
88 |
+
Special VAE used for training: madebyollin/sdxl-vae-fp16-fix.
|
89 |
+
|
huggy_lora_edm_v2.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e315e28b91e06639e70fb5d2bbe0025ea8724d9e74c67dd142c9f79d1d2711f7
|
3 |
+
size 186046568
|
image_0.png
ADDED
Git LFS Details
|
image_1.png
ADDED
Git LFS Details
|
image_2.png
ADDED
Git LFS Details
|
image_3.png
ADDED
Git LFS Details
|
pytorch_lora_weights.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c9c317a8b7d761531527ed4479dc90415cab623a310d1922689ee19ca86c1e72
|
3 |
+
size 185963768
|