itzzdeep commited on
Commit
714e7e1
1 Parent(s): 131b9b6

End of training

Browse files
Files changed (39) hide show
  1. README.md +77 -0
  2. checkpoint-1000/optimizer.bin +3 -0
  3. checkpoint-1000/pytorch_lora_weights.safetensors +3 -0
  4. checkpoint-1000/random_states_0.pkl +3 -0
  5. checkpoint-1000/scheduler.bin +3 -0
  6. checkpoint-1000/youtube-thumbnails-sdxl-lora-v2_emb.safetensors +3 -0
  7. checkpoint-1500/optimizer.bin +3 -0
  8. checkpoint-1500/pytorch_lora_weights.safetensors +3 -0
  9. checkpoint-1500/random_states_0.pkl +3 -0
  10. checkpoint-1500/scheduler.bin +3 -0
  11. checkpoint-1500/youtube-thumbnails-sdxl-lora-v2_emb.safetensors +3 -0
  12. checkpoint-2000/optimizer.bin +3 -0
  13. checkpoint-2000/pytorch_lora_weights.safetensors +3 -0
  14. checkpoint-2000/random_states_0.pkl +3 -0
  15. checkpoint-2000/scheduler.bin +3 -0
  16. checkpoint-2000/youtube-thumbnails-sdxl-lora-v2_emb.safetensors +3 -0
  17. checkpoint-2500/optimizer.bin +3 -0
  18. checkpoint-2500/pytorch_lora_weights.safetensors +3 -0
  19. checkpoint-2500/random_states_0.pkl +3 -0
  20. checkpoint-2500/scheduler.bin +3 -0
  21. checkpoint-2500/youtube-thumbnails-sdxl-lora-v2_emb.safetensors +3 -0
  22. checkpoint-3000/optimizer.bin +3 -0
  23. checkpoint-3000/pytorch_lora_weights.safetensors +3 -0
  24. checkpoint-3000/random_states_0.pkl +3 -0
  25. checkpoint-3000/scheduler.bin +3 -0
  26. checkpoint-3000/youtube-thumbnails-sdxl-lora-v2_emb.safetensors +3 -0
  27. checkpoint-3500/optimizer.bin +3 -0
  28. checkpoint-3500/pytorch_lora_weights.safetensors +3 -0
  29. checkpoint-3500/random_states_0.pkl +3 -0
  30. checkpoint-3500/scheduler.bin +3 -0
  31. checkpoint-3500/youtube-thumbnails-sdxl-lora-v2_emb.safetensors +3 -0
  32. checkpoint-500/optimizer.bin +3 -0
  33. checkpoint-500/pytorch_lora_weights.safetensors +3 -0
  34. checkpoint-500/random_states_0.pkl +3 -0
  35. checkpoint-500/scheduler.bin +3 -0
  36. checkpoint-500/youtube-thumbnails-sdxl-lora-v2_emb.safetensors +3 -0
  37. pytorch_lora_weights.safetensors +3 -0
  38. youtube-thumbnails-sdxl-lora-v2.safetensors +3 -0
  39. youtube-thumbnails-sdxl-lora-v2_emb.safetensors +3 -0
README.md ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - stable-diffusion-xl
4
+ - stable-diffusion-xl-diffusers
5
+ - text-to-image
6
+ - diffusers
7
+ - lora
8
+ - template:sd-lora
9
+ widget:
10
+
11
+ - text: 'instance_prompt'
12
+
13
+ base_model: stabilityai/stable-diffusion-xl-base-1.0
14
+ instance_prompt: instance_prompt
15
+ license: openrail++
16
+ ---
17
+
18
+ # SDXL LoRA DreamBooth - itzzdeep/youtube-thumbnails-sdxl-lora-v2
19
+
20
+ <Gallery />
21
+
22
+ ## Model description
23
+
24
+ ### These are itzzdeep/youtube-thumbnails-sdxl-lora-v2 LoRA adaption weights for stabilityai/stable-diffusion-xl-base-1.0.
25
+
26
+ ## Download model
27
+
28
+ ### Use it with UIs such as AUTOMATIC1111, Comfy UI, SD.Next, Invoke
29
+
30
+ - **LoRA**: download **[`youtube-thumbnails-sdxl-lora-v2.safetensors` here 💾](/itzzdeep/youtube-thumbnails-sdxl-lora-v2/blob/main/youtube-thumbnails-sdxl-lora-v2.safetensors)**.
31
+ - Place it on your `models/Lora` folder.
32
+ - On AUTOMATIC1111, load the LoRA by adding `<lora:youtube-thumbnails-sdxl-lora-v2:1>` to your prompt. On ComfyUI just [load it as a regular LoRA](https://comfyanonymous.github.io/ComfyUI_examples/lora/).
33
+ - *Embeddings*: download **[`youtube-thumbnails-sdxl-lora-v2_emb.safetensors` here 💾](/itzzdeep/youtube-thumbnails-sdxl-lora-v2/blob/main/youtube-thumbnails-sdxl-lora-v2_emb.safetensors)**.
34
+ - Place it on it on your `embeddings` folder
35
+ - Use it by adding `youtube-thumbnails-sdxl-lora-v2_emb` to your prompt. For example, `instance_prompt`
36
+ (you need both the LoRA and the embeddings as they were trained together for this LoRA)
37
+
38
+
39
+ ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
40
+
41
+ ```py
42
+ from diffusers import AutoPipelineForText2Image
43
+ import torch
44
+ from huggingface_hub import hf_hub_download
45
+ from safetensors.torch import load_file
46
+
47
+ pipeline = AutoPipelineForText2Image.from_pretrained('stabilityai/stable-diffusion-xl-base-1.0', torch_dtype=torch.float16).to('cuda')
48
+ pipeline.load_lora_weights('itzzdeep/youtube-thumbnails-sdxl-lora-v2', weight_name='pytorch_lora_weights.safetensors')
49
+ embedding_path = hf_hub_download(repo_id='itzzdeep/youtube-thumbnails-sdxl-lora-v2', filename='youtube-thumbnails-sdxl-lora-v2_emb.safetensors' repo_type="model")
50
+ state_dict = load_file(embedding_path)
51
+ pipeline.load_textual_inversion(state_dict["clip_l"], token=[], text_encoder=pipeline.text_encoder, tokenizer=pipeline.tokenizer)
52
+ pipeline.load_textual_inversion(state_dict["clip_g"], token=[], text_encoder=pipeline.text_encoder_2, tokenizer=pipeline.tokenizer_2)
53
+
54
+ image = pipeline('instance_prompt').images[0]
55
+ ```
56
+
57
+ 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)
58
+
59
+ ## Trigger words
60
+
61
+ To trigger image generation of trained concept(or concepts) replace each concept identifier in you prompt with the new inserted tokens:
62
+
63
+ to trigger concept `TOK` → use `<s0><s1>` in your prompt
64
+
65
+
66
+
67
+ ## Details
68
+ All [Files & versions](/itzzdeep/youtube-thumbnails-sdxl-lora-v2/tree/main).
69
+
70
+ 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).
71
+
72
+ LoRA for the text encoder was enabled. False.
73
+
74
+ Pivotal tuning was enabled: True.
75
+
76
+ Special VAE used for training: madebyollin/sdxl-vae-fp16-fix.
77
+
checkpoint-1000/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e748b8dcc5fd3da6e1f2f3e8029f7a8e9268a84febafdbd289312ea14187a61
3
+ size 372902610
checkpoint-1000/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b48b010970603a85868c74f79c67ff26b4a77462d3dca6a22907bef001d1d9bf
3
+ size 93066424
checkpoint-1000/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea6c53ca861a635e0c6bf500c48b5b2595034ed466df743d7bd30874fbb09cc8
3
+ size 14280
checkpoint-1000/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7babe47bfb751f6436f46e92a0639bc1ec9db889e510abc5afa501cfc0de4add
3
+ size 1064
checkpoint-1000/youtube-thumbnails-sdxl-lora-v2_emb.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cacafa17051c386b2e79bf1521140c18ed122913bc314096ac9ab60c99f28498
3
+ size 8344
checkpoint-1500/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6622cf6be089c104fe427e853b4572eca028f94d954d8ed31160fd3ce1c8325d
3
+ size 372902610
checkpoint-1500/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:be92cfffff162f8a2ff41aa3c91e9c44f01aa6305bf9c4d98f7941e5ce4ead86
3
+ size 93066424
checkpoint-1500/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:36cc3b16270f932d57b80ca83d38e8498afa9baf1e42a3c1637fc6084cbd9509
3
+ size 14280
checkpoint-1500/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bee77c7ca869cb7ea3b5646971c90ecb5e832b874dac6170088918e7effcfd4e
3
+ size 1064
checkpoint-1500/youtube-thumbnails-sdxl-lora-v2_emb.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cacafa17051c386b2e79bf1521140c18ed122913bc314096ac9ab60c99f28498
3
+ size 8344
checkpoint-2000/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c6a3f2dee1335a8c978f8fb1b3cfee8dfd9fbec2ffc838ce58577ddd920abae4
3
+ size 372902610
checkpoint-2000/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3d667955db9d02b86a47d571abdd0b7dc0f1d5bb266a430217ff6bd39dedc44a
3
+ size 93066424
checkpoint-2000/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0438e87149ad23254e9cc31809911d3cbba781bfffaacb39ef8522263e7ec8c4
3
+ size 14280
checkpoint-2000/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:22dbf40978352fc68dc380c1bb84d309ac1fe1989fe5819be6b1e3309ded4c83
3
+ size 1064
checkpoint-2000/youtube-thumbnails-sdxl-lora-v2_emb.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cacafa17051c386b2e79bf1521140c18ed122913bc314096ac9ab60c99f28498
3
+ size 8344
checkpoint-2500/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0e0e96d32a4bd403bde9380ec3c45061cebf34ea70a7c3ec405f6c967bdf26c8
3
+ size 372902610
checkpoint-2500/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:37b95a75020bef6dd3c11df918d8100478fd773e7d76cb322442576a34c0de86
3
+ size 93066424
checkpoint-2500/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:deaebe07f2ba000c6eb606ddc727cef8174b28e024bdcb521c08095f75e3f95d
3
+ size 14280
checkpoint-2500/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:556543d803f58882241b0379e4898aaa06722f7d3aaa6ecda7aa6bafcc3c9abd
3
+ size 1064
checkpoint-2500/youtube-thumbnails-sdxl-lora-v2_emb.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cacafa17051c386b2e79bf1521140c18ed122913bc314096ac9ab60c99f28498
3
+ size 8344
checkpoint-3000/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bc31d61320be5ad1812f50020f4d62fb205121efef326390edea082fe99fb390
3
+ size 372902610
checkpoint-3000/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6e6ff30dff9179b6a1bf23d27b36350b1fca2b89cf9d19683bdc71e563eab6be
3
+ size 93066424
checkpoint-3000/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0c8feec2dacd9d6045963f0b5e71b35438ba20d2a58736f15b56156a904dfab4
3
+ size 14280
checkpoint-3000/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7a4d74c713846175479050f182d0166591a982d4555799b351b72a43407784b3
3
+ size 1064
checkpoint-3000/youtube-thumbnails-sdxl-lora-v2_emb.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cacafa17051c386b2e79bf1521140c18ed122913bc314096ac9ab60c99f28498
3
+ size 8344
checkpoint-3500/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6c4af901ef7ff8e291a9130e6e1e6e345420459e3ab05dcac33771b8b150d166
3
+ size 372902610
checkpoint-3500/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fd3272473ddb6adc5cc78ed822922f06365f96fa2f610f8c285d6a5c887a79b3
3
+ size 93066424
checkpoint-3500/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:54765bd195bc96beb76d8fbb685f6a3812dab99ae0d3f4f39a71bf7fb4822da9
3
+ size 14280
checkpoint-3500/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d59ca8d409261353811eb02536a0ddc7694633fe838b3fce3e8a74f14bd80f1a
3
+ size 1064
checkpoint-3500/youtube-thumbnails-sdxl-lora-v2_emb.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cacafa17051c386b2e79bf1521140c18ed122913bc314096ac9ab60c99f28498
3
+ size 8344
checkpoint-500/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e316d37e211ac8e48d2ec6ec36e44e6f433f7c59fccd64f57e297be6b776ec00
3
+ size 372902610
checkpoint-500/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0b9493a756562cbee842f909c43692e39267ea0e9f3dff0f8d9ed9175285fbd8
3
+ size 93066424
checkpoint-500/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bea733bbd0c13d4c32050b1b86a0a5088fd48f9383ab08bdab3d497bc89a2387
3
+ size 14280
checkpoint-500/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f69f319474a0f96bcdc98089257a7338a392db6136a936e8466cc8c48e0767f4
3
+ size 1064
checkpoint-500/youtube-thumbnails-sdxl-lora-v2_emb.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cacafa17051c386b2e79bf1521140c18ed122913bc314096ac9ab60c99f28498
3
+ size 8344
pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:da40c455bd967957e726f4643223bc7d9f701512b2d53608cb6c61d1791060d5
3
+ size 185963768
youtube-thumbnails-sdxl-lora-v2.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bd8701ea5d2457ca2c468b9a31c944b1e154422ec60a037cbfaf2394c2df9c43
3
+ size 186046568
youtube-thumbnails-sdxl-lora-v2_emb.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cacafa17051c386b2e79bf1521140c18ed122913bc314096ac9ab60c99f28498
3
+ size 8344