End of training
Browse files- README.md +12 -26
- image_0.png +2 -2
- image_1.png +2 -2
- image_2.png +2 -2
- image_3.png +2 -2
- linoy_lora_pivotal.safetensors +2 -2
- pytorch_lora_weights.safetensors +2 -2
README.md
CHANGED
@@ -8,28 +8,28 @@ tags:
|
|
8 |
- template:sd-lora
|
9 |
widget:
|
10 |
|
11 |
-
- text: 'a
|
12 |
output:
|
13 |
url:
|
14 |
"image_0.png"
|
15 |
|
16 |
-
- text: 'a
|
17 |
output:
|
18 |
url:
|
19 |
"image_1.png"
|
20 |
|
21 |
-
- text: 'a
|
22 |
output:
|
23 |
url:
|
24 |
"image_2.png"
|
25 |
|
26 |
-
- text: 'a
|
27 |
output:
|
28 |
url:
|
29 |
"image_3.png"
|
30 |
|
31 |
base_model: stabilityai/stable-diffusion-xl-base-1.0
|
32 |
-
instance_prompt: photo of a
|
33 |
license: openrail++
|
34 |
---
|
35 |
|
@@ -48,48 +48,34 @@ license: openrail++
|
|
48 |
- **LoRA**: download **[`linoy_lora_pivotal.safetensors` here 💾](/linoyts/linoy_lora_pivotal/blob/main/linoy_lora_pivotal.safetensors)**.
|
49 |
- Place it on your `models/Lora` folder.
|
50 |
- On AUTOMATIC1111, load the LoRA by adding `<lora:linoy_lora_pivotal:1>` to your prompt. On ComfyUI just [load it as a regular LoRA](https://comfyanonymous.github.io/ComfyUI_examples/lora/).
|
51 |
-
|
52 |
-
- Place it on it on your `embeddings` folder
|
53 |
-
- Use it by adding `linoy_lora_pivotal_emb` to your prompt. For example, `photo of a linoy_lora_pivotal_emb woman`
|
54 |
-
(you need both the LoRA and the embeddings as they were trained together for this LoRA)
|
55 |
-
|
56 |
|
57 |
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
|
58 |
|
59 |
```py
|
60 |
from diffusers import AutoPipelineForText2Image
|
61 |
import torch
|
62 |
-
|
63 |
-
from safetensors.torch import load_file
|
64 |
-
|
65 |
pipeline = AutoPipelineForText2Image.from_pretrained('stabilityai/stable-diffusion-xl-base-1.0', torch_dtype=torch.float16).to('cuda')
|
66 |
pipeline.load_lora_weights('linoyts/linoy_lora_pivotal', weight_name='pytorch_lora_weights.safetensors')
|
67 |
-
|
68 |
-
|
69 |
-
pipeline.load_textual_inversion(state_dict["clip_l"], token=["<s0>", "<s1>"], text_encoder=pipeline.text_encoder, tokenizer=pipeline.tokenizer)
|
70 |
-
pipeline.load_textual_inversion(state_dict["clip_g"], token=["<s0>", "<s1>"], text_encoder=pipeline.text_encoder_2, tokenizer=pipeline.tokenizer_2)
|
71 |
-
|
72 |
-
image = pipeline('a <s0><s1> woman with pink hair at a party').images[0]
|
73 |
```
|
74 |
|
75 |
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)
|
76 |
|
77 |
## Trigger words
|
78 |
|
79 |
-
|
80 |
-
|
81 |
-
to trigger concept `TOK` → use `<s0><s1>` in your prompt
|
82 |
-
|
83 |
-
|
84 |
|
85 |
## Details
|
86 |
All [Files & versions](/linoyts/linoy_lora_pivotal/tree/main).
|
87 |
|
88 |
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).
|
89 |
|
90 |
-
LoRA for the text encoder was enabled.
|
91 |
|
92 |
-
Pivotal tuning was enabled:
|
93 |
|
94 |
Special VAE used for training: madebyollin/sdxl-vae-fp16-fix.
|
95 |
|
|
|
8 |
- template:sd-lora
|
9 |
widget:
|
10 |
|
11 |
+
- text: 'a TOK woman with pink hair at a party'
|
12 |
output:
|
13 |
url:
|
14 |
"image_0.png"
|
15 |
|
16 |
+
- text: 'a TOK woman with pink hair at a party'
|
17 |
output:
|
18 |
url:
|
19 |
"image_1.png"
|
20 |
|
21 |
+
- text: 'a TOK woman with pink hair at a party'
|
22 |
output:
|
23 |
url:
|
24 |
"image_2.png"
|
25 |
|
26 |
+
- text: 'a TOK woman with pink hair at a party'
|
27 |
output:
|
28 |
url:
|
29 |
"image_3.png"
|
30 |
|
31 |
base_model: stabilityai/stable-diffusion-xl-base-1.0
|
32 |
+
instance_prompt: photo of a TOK woman
|
33 |
license: openrail++
|
34 |
---
|
35 |
|
|
|
48 |
- **LoRA**: download **[`linoy_lora_pivotal.safetensors` here 💾](/linoyts/linoy_lora_pivotal/blob/main/linoy_lora_pivotal.safetensors)**.
|
49 |
- Place it on your `models/Lora` folder.
|
50 |
- On AUTOMATIC1111, load the LoRA by adding `<lora:linoy_lora_pivotal:1>` to your prompt. On ComfyUI just [load it as a regular LoRA](https://comfyanonymous.github.io/ComfyUI_examples/lora/).
|
51 |
+
|
|
|
|
|
|
|
|
|
52 |
|
53 |
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
|
54 |
|
55 |
```py
|
56 |
from diffusers import AutoPipelineForText2Image
|
57 |
import torch
|
58 |
+
|
|
|
|
|
59 |
pipeline = AutoPipelineForText2Image.from_pretrained('stabilityai/stable-diffusion-xl-base-1.0', torch_dtype=torch.float16).to('cuda')
|
60 |
pipeline.load_lora_weights('linoyts/linoy_lora_pivotal', weight_name='pytorch_lora_weights.safetensors')
|
61 |
+
|
62 |
+
image = pipeline('a TOK woman with pink hair at a party').images[0]
|
|
|
|
|
|
|
|
|
63 |
```
|
64 |
|
65 |
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)
|
66 |
|
67 |
## Trigger words
|
68 |
|
69 |
+
You should use photo of a TOK woman to trigger the image generation.
|
|
|
|
|
|
|
|
|
70 |
|
71 |
## Details
|
72 |
All [Files & versions](/linoyts/linoy_lora_pivotal/tree/main).
|
73 |
|
74 |
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).
|
75 |
|
76 |
+
LoRA for the text encoder was enabled. True.
|
77 |
|
78 |
+
Pivotal tuning was enabled: False.
|
79 |
|
80 |
Special VAE used for training: madebyollin/sdxl-vae-fp16-fix.
|
81 |
|
image_0.png
CHANGED
![]() |
Git LFS Details
|
![]() |
Git LFS Details
|
image_1.png
CHANGED
![]() |
Git LFS Details
|
![]() |
Git LFS Details
|
image_2.png
CHANGED
![]() |
Git LFS Details
|
![]() |
Git LFS Details
|
image_3.png
CHANGED
![]() |
Git LFS Details
|
![]() |
Git LFS Details
|
linoy_lora_pivotal.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9c811a1fb7ce023d1bfcefa1c622d66f211957ff22b93647800aa7576057ed89
|
3 |
+
size 237421752
|
pytorch_lora_weights.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:17cfbc35331af80a72a76541c7a2ee4a13ab369ac262ef19d5ac8edebd76f226
|
3 |
+
size 237400944
|