End of training
Browse files- .gitattributes +4 -0
- README.md +82 -0
- image_0.png +3 -0
- image_1.png +3 -0
- image_2.png +3 -0
- image_3.png +3 -0
- linoy_dora_v3_unet.safetensors +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,82 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
tags:
|
3 |
+
- stable-diffusion-xl
|
4 |
+
- stable-diffusion-xl-diffusers
|
5 |
+
- diffusers-training
|
6 |
+
- text-to-image
|
7 |
+
- diffusers
|
8 |
+
- dora
|
9 |
+
- template:sd-lora
|
10 |
+
widget:
|
11 |
+
|
12 |
+
- text: 'watercolor painting of a TOK woman with pink hair in New York'
|
13 |
+
output:
|
14 |
+
url:
|
15 |
+
"image_0.png"
|
16 |
+
|
17 |
+
- text: 'watercolor painting of a TOK woman with pink hair in New York'
|
18 |
+
output:
|
19 |
+
url:
|
20 |
+
"image_1.png"
|
21 |
+
|
22 |
+
- text: 'watercolor painting of a TOK woman with pink hair in New York'
|
23 |
+
output:
|
24 |
+
url:
|
25 |
+
"image_2.png"
|
26 |
+
|
27 |
+
- text: 'watercolor painting of a TOK woman with pink hair in New York'
|
28 |
+
output:
|
29 |
+
url:
|
30 |
+
"image_3.png"
|
31 |
+
|
32 |
+
base_model: stabilityai/stable-diffusion-xl-base-1.0
|
33 |
+
instance_prompt: a TOK woman
|
34 |
+
license: openrail++
|
35 |
+
---
|
36 |
+
|
37 |
+
# SDXL LoRA DreamBooth - linoyts/linoy_dora_v3_unet
|
38 |
+
|
39 |
+
<Gallery />
|
40 |
+
|
41 |
+
## Model description
|
42 |
+
|
43 |
+
### These are linoyts/linoy_dora_v3_unet LoRA adaption weights for stabilityai/stable-diffusion-xl-base-1.0.
|
44 |
+
|
45 |
+
## Download model
|
46 |
+
|
47 |
+
### Use it with UIs such as AUTOMATIC1111, Comfy UI, SD.Next, Invoke
|
48 |
+
|
49 |
+
- **LoRA**: download **[`linoy_dora_v3_unet.safetensors` here 💾](/linoyts/linoy_dora_v3_unet/blob/main/linoy_dora_v3_unet.safetensors)**.
|
50 |
+
- Place it on your `models/Lora` folder.
|
51 |
+
- On AUTOMATIC1111, load the LoRA by adding `<lora:linoy_dora_v3_unet:1>` to your prompt. On ComfyUI just [load it as a regular LoRA](https://comfyanonymous.github.io/ComfyUI_examples/lora/).
|
52 |
+
|
53 |
+
|
54 |
+
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
|
55 |
+
|
56 |
+
```py
|
57 |
+
from diffusers import AutoPipelineForText2Image
|
58 |
+
import torch
|
59 |
+
|
60 |
+
pipeline = AutoPipelineForText2Image.from_pretrained('stabilityai/stable-diffusion-xl-base-1.0', torch_dtype=torch.float16).to('cuda')
|
61 |
+
pipeline.load_lora_weights('linoyts/linoy_dora_v3_unet', weight_name='pytorch_lora_weights.safetensors')
|
62 |
+
|
63 |
+
image = pipeline('watercolor painting of a TOK woman with pink hair in New York').images[0]
|
64 |
+
```
|
65 |
+
|
66 |
+
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)
|
67 |
+
|
68 |
+
## Trigger words
|
69 |
+
|
70 |
+
You should use a TOK woman to trigger the image generation.
|
71 |
+
|
72 |
+
## Details
|
73 |
+
All [Files & versions](/linoyts/linoy_dora_v3_unet/tree/main).
|
74 |
+
|
75 |
+
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).
|
76 |
+
|
77 |
+
LoRA for the text encoder was enabled. False.
|
78 |
+
|
79 |
+
Pivotal tuning was enabled: False.
|
80 |
+
|
81 |
+
Special VAE used for training: madebyollin/sdxl-vae-fp16-fix.
|
82 |
+
|
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
|
linoy_dora_v3_unet.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6e672db8fae6dc164e867751b4bb4d6ff4cb1a622c025968d560c5fb56e2007e
|
3 |
+
size 188798032
|
pytorch_lora_weights.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:71e2777119e12dc2b812916194d88563f6b8de8bf55f457b158fcde414886a9d
|
3 |
+
size 188712456
|