linoyts HF staff commited on
Commit
f485c19
·
verified ·
1 Parent(s): 5815d01

End of training

Browse files
README.md CHANGED
@@ -8,28 +8,28 @@ tags:
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,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
- 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).
@@ -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: False.
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

  • SHA256: 77bd0f593941e66a442ffb131acfe9e06ad2ebfa3dfadb39f8160f5c3b2d2c38
  • Pointer size: 132 Bytes
  • Size of remote file: 1.32 MB

Git LFS Details

  • SHA256: 6bdfcc6489491e23c2f7bce4b4ebe5dc580abbcd7ec50a1f9db20fa2b3d16430
  • Pointer size: 132 Bytes
  • Size of remote file: 1.57 MB
image_1.png CHANGED

Git LFS Details

  • SHA256: d2f34bcb7564081b33b63674370a76f988d8e5d8abf6e6378323077885307d99
  • Pointer size: 132 Bytes
  • Size of remote file: 1.39 MB

Git LFS Details

  • SHA256: 7a5676793c4a2e839212e9b194db141a3a42ffc814668004d48ffa681ce95df7
  • Pointer size: 132 Bytes
  • Size of remote file: 1.29 MB
image_2.png CHANGED

Git LFS Details

  • SHA256: 79036c8e51242bd8c5c3ed3c325ece7c2f77786a3bb1a51b8ce212a43c15fd5b
  • Pointer size: 132 Bytes
  • Size of remote file: 1.57 MB

Git LFS Details

  • SHA256: 4e4f6aae6c240671905046561746c1b471a3182c1ed36e1d4a335745c9e0b3d1
  • Pointer size: 132 Bytes
  • Size of remote file: 1.37 MB
image_3.png CHANGED

Git LFS Details

  • SHA256: c97016c5c399ab0dbfdbf281dc23ea64e8fdea0b08b2e5697826179c6d2c7c3c
  • Pointer size: 132 Bytes
  • Size of remote file: 1.31 MB

Git LFS Details

  • SHA256: a344dff385cae95ae9cca03bb5d71a14d8663a69c7382952cfaf46d0858ea402
  • Pointer size: 132 Bytes
  • Size of remote file: 1.27 MB
linoy_lora_pivotal.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:9bfceb3f47e112cf7791ce2c283c94b328a0d82dea45d1642014871c2ed5e0b9
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:f583cf8b9f5743cc946d137feba3034f2041abec97d89957f6b8c8b4efe96698
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:1e6256955b818881a1fcfb27e335cad7e685b859897a6d0d6ec6d4b8f59e31fb
3
  size 185963768
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5d3b1a1f84d3ecb559ca62a4db2c3dbedb3bed763c1a6d6cff4ca0a4cba85bb5
3
  size 185963768