End of training
Browse files- README.md +25 -11
- image_0.png +2 -2
- image_1.png +2 -2
- image_2.png +2 -2
- image_3.png +2 -2
- linoy_lora_pivotal.safetensors +1 -1
- linoy_lora_pivotal_emb.safetensors +1 -1
- pytorch_lora_weights.safetensors +1 -1
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,25 +48,39 @@ 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 |
|
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 |
-
|
|
|
|
|
|
|
|
|
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 |
-
|
|
|
|
|
|
|
|
|
70 |
|
71 |
## Details
|
72 |
All [Files & versions](/linoyts/linoy_lora_pivotal/tree/main).
|
@@ -75,7 +89,7 @@ The weights were trained using [🧨 diffusers Advanced Dreambooth Training Scri
|
|
75 |
|
76 |
LoRA for the text encoder was enabled. False.
|
77 |
|
78 |
-
Pivotal tuning was enabled:
|
79 |
|
80 |
Special VAE used for training: madebyollin/sdxl-vae-fp16-fix.
|
81 |
|
|
|
8 |
- template:sd-lora
|
9 |
widget:
|
10 |
|
11 |
+
- text: 'a <s0><s1> woman with pink hair at a party'
|
12 |
output:
|
13 |
url:
|
14 |
"image_0.png"
|
15 |
|
16 |
+
- text: 'a <s0><s1> woman with pink hair at a party'
|
17 |
output:
|
18 |
url:
|
19 |
"image_1.png"
|
20 |
|
21 |
+
- text: 'a <s0><s1> woman with pink hair at a party'
|
22 |
output:
|
23 |
url:
|
24 |
"image_2.png"
|
25 |
|
26 |
+
- text: 'a <s0><s1> 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 <s0><s1> 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 |
+
- *Embeddings*: download **[`linoy_lora_pivotal_emb.safetensors` here 💾](/linoyts/linoy_lora_pivotal/blob/main/linoy_lora_pivotal_emb.safetensors)**.
|
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 |
+
from huggingface_hub import hf_hub_download
|
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 |
+
embedding_path = hf_hub_download(repo_id='linoyts/linoy_lora_pivotal', filename='linoy_lora_pivotal_emb.safetensors', repo_type="model")
|
68 |
+
state_dict = load_file(embedding_path)
|
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 |
+
To trigger image generation of trained concept(or concepts) replace each concept identifier in you prompt with the new inserted tokens:
|
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).
|
|
|
89 |
|
90 |
LoRA for the text encoder was enabled. False.
|
91 |
|
92 |
+
Pivotal tuning was enabled: True.
|
93 |
|
94 |
Special VAE used for training: madebyollin/sdxl-vae-fp16-fix.
|
95 |
|
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 186046568
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:970f4dcbf8196890378b2ce26e10d45e2af385cae42367b67cd39121494fc436
|
3 |
size 186046568
|
linoy_lora_pivotal_emb.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 16536
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2e78a5e9dcaa7b028dbf6976c01fff42113cd948e9d77ed5db137a5f640b997c
|
3 |
size 16536
|
pytorch_lora_weights.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 185963768
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5d3b1a1f84d3ecb559ca62a4db2c3dbedb3bed763c1a6d6cff4ca0a4cba85bb5
|
3 |
size 185963768
|