linoyts HF staff commited on
Commit
a833d55
·
verified ·
1 Parent(s): 54b3f07

End of training

Browse files
README.md CHANGED
@@ -8,28 +8,28 @@ tags:
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,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
- - *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).
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. False.
91
 
92
- Pivotal tuning was enabled: True.
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

  • SHA256: 8d46d19acaa60ca1790fb2152623c95cbb4eb79a1b94c284075479c01963dc8b
  • Pointer size: 132 Bytes
  • Size of remote file: 1.51 MB

Git LFS Details

  • SHA256: 25201095e162c92863483fb613de216e1b9c012035f392c2fc6d55ad1f1d359c
  • Pointer size: 132 Bytes
  • Size of remote file: 1.63 MB
image_1.png CHANGED

Git LFS Details

  • SHA256: 92d2c22d756a9eb30f5f0b26ff0dcffbdef51411d6163dcf2d70363b96546630
  • Pointer size: 132 Bytes
  • Size of remote file: 1.37 MB

Git LFS Details

  • SHA256: c9ef680e90573be72ae216289b5c9899cd3af6c8205994f525eb69f3776c345a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.31 MB
image_2.png CHANGED

Git LFS Details

  • SHA256: 0a3b6fdf51e2ce367d5ea2bf1cb3b3ed6c4f96fbacf6fda4c583d7ce1c5b9bc5
  • Pointer size: 132 Bytes
  • Size of remote file: 1.32 MB

Git LFS Details

  • SHA256: 16c1746505da499e313f888dcbd66e1fafa8abb3a081aa2abd6adebde2d7af09
  • Pointer size: 132 Bytes
  • Size of remote file: 1.53 MB
image_3.png CHANGED

Git LFS Details

  • SHA256: 4ac2827c24e70d25ba367b649c312d0157dbf87a5c0c847348718ceade5bfce4
  • Pointer size: 132 Bytes
  • Size of remote file: 1.16 MB

Git LFS Details

  • SHA256: 8e741a9f0fff737d53731f08358d6ad5f4b8e92042ac91ce77e932142312bbf8
  • Pointer size: 132 Bytes
  • Size of remote file: 1.31 MB
linoy_lora_pivotal.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:5f7c14e0c1bdbf9fa8ac6543feedcef451d0d1b95a290c0ddfc59ac030cb2e27
3
- size 186046568
 
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:379c07ce349e61d97c27dddc7d582b69214aa2835b409057928d50a4a555451f
3
- size 185963768
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:17cfbc35331af80a72a76541c7a2ee4a13ab369ac262ef19d5ac8edebd76f226
3
+ size 237400944