rayaanoidpr commited on
Commit
8217592
·
verified ·
1 Parent(s): 001670d

End of training

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. README.md +64 -0
  2. checkpoint-100/optimizer.bin +3 -0
  3. checkpoint-100/pytorch_lora_weights.safetensors +3 -0
  4. checkpoint-100/random_states_0.pkl +3 -0
  5. checkpoint-100/scaler.pt +3 -0
  6. checkpoint-100/scheduler.bin +3 -0
  7. checkpoint-1000/optimizer.bin +3 -0
  8. checkpoint-1000/pytorch_lora_weights.safetensors +3 -0
  9. checkpoint-1000/random_states_0.pkl +3 -0
  10. checkpoint-1000/scaler.pt +3 -0
  11. checkpoint-1000/scheduler.bin +3 -0
  12. checkpoint-1100/optimizer.bin +3 -0
  13. checkpoint-1100/pytorch_lora_weights.safetensors +3 -0
  14. checkpoint-1100/random_states_0.pkl +3 -0
  15. checkpoint-1100/scaler.pt +3 -0
  16. checkpoint-1100/scheduler.bin +3 -0
  17. checkpoint-1200/optimizer.bin +3 -0
  18. checkpoint-1200/pytorch_lora_weights.safetensors +3 -0
  19. checkpoint-1200/random_states_0.pkl +3 -0
  20. checkpoint-1200/scaler.pt +3 -0
  21. checkpoint-1200/scheduler.bin +3 -0
  22. checkpoint-1300/optimizer.bin +3 -0
  23. checkpoint-1300/pytorch_lora_weights.safetensors +3 -0
  24. checkpoint-1300/random_states_0.pkl +3 -0
  25. checkpoint-1300/scaler.pt +3 -0
  26. checkpoint-1300/scheduler.bin +3 -0
  27. checkpoint-1400/optimizer.bin +3 -0
  28. checkpoint-1400/pytorch_lora_weights.safetensors +3 -0
  29. checkpoint-1400/random_states_0.pkl +3 -0
  30. checkpoint-1400/scaler.pt +3 -0
  31. checkpoint-1400/scheduler.bin +3 -0
  32. checkpoint-1500/optimizer.bin +3 -0
  33. checkpoint-1500/pytorch_lora_weights.safetensors +3 -0
  34. checkpoint-1500/random_states_0.pkl +3 -0
  35. checkpoint-1500/scaler.pt +3 -0
  36. checkpoint-1500/scheduler.bin +3 -0
  37. checkpoint-1600/optimizer.bin +3 -0
  38. checkpoint-1600/pytorch_lora_weights.safetensors +3 -0
  39. checkpoint-1600/random_states_0.pkl +3 -0
  40. checkpoint-1600/scaler.pt +3 -0
  41. checkpoint-1600/scheduler.bin +3 -0
  42. checkpoint-1700/optimizer.bin +3 -0
  43. checkpoint-1700/pytorch_lora_weights.safetensors +3 -0
  44. checkpoint-1700/random_states_0.pkl +3 -0
  45. checkpoint-1700/scaler.pt +3 -0
  46. checkpoint-1700/scheduler.bin +3 -0
  47. checkpoint-1800/optimizer.bin +3 -0
  48. checkpoint-1800/pytorch_lora_weights.safetensors +3 -0
  49. checkpoint-1800/random_states_0.pkl +3 -0
  50. checkpoint-1800/scaler.pt +3 -0
README.md ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - stable-diffusion
4
+ - stable-diffusion-diffusers
5
+ - diffusers-training
6
+ - text-to-image
7
+ - diffusers
8
+ - lora
9
+ - template:sd-lora
10
+ widget:
11
+
12
+ - text: 'in the style of TOK'
13
+
14
+ base_model: runwayml/stable-diffusion-v1-5
15
+ instance_prompt: in the style of TOK
16
+ license: openrail++
17
+ ---
18
+
19
+ # SD1.5 LoRA DreamBooth - rayaanoidpr/wongkarwai_LoRa
20
+
21
+ <Gallery />
22
+
23
+ ## Model description
24
+
25
+ ### These are rayaanoidpr/wongkarwai_LoRa LoRA adaption weights for runwayml/stable-diffusion-v1-5.
26
+
27
+ ## Download model
28
+
29
+ ### Use it with UIs such as AUTOMATIC1111, Comfy UI, SD.Next, Invoke
30
+
31
+ - **LoRA**: download **[`wongkarwai_LoRa.safetensors` here 💾](/rayaanoidpr/wongkarwai_LoRa/blob/main/wongkarwai_LoRa.safetensors)**.
32
+ - Place it on your `models/Lora` folder.
33
+ - On AUTOMATIC1111, load the LoRA by adding `<lora:wongkarwai_LoRa:1>` to your prompt. On ComfyUI just [load it as a regular LoRA](https://comfyanonymous.github.io/ComfyUI_examples/lora/).
34
+
35
+
36
+ ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
37
+
38
+ ```py
39
+ from diffusers import AutoPipelineForText2Image
40
+ import torch
41
+
42
+ pipeline = AutoPipelineForText2Image.from_pretrained('runwayml/stable-diffusion-v1-5', torch_dtype=torch.float16).to('cuda')
43
+ pipeline.load_lora_weights('rayaanoidpr/wongkarwai_LoRa', weight_name='pytorch_lora_weights.safetensors')
44
+
45
+ image = pipeline('in the style of TOK').images[0]
46
+ ```
47
+
48
+ 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)
49
+
50
+ ## Trigger words
51
+
52
+ You should use in the style of TOK to trigger the image generation.
53
+
54
+ ## Details
55
+ All [Files & versions](/rayaanoidpr/wongkarwai_LoRa/tree/main).
56
+
57
+ The weights were trained using [🧨 diffusers Advanced Dreambooth Training Script](https://github.com/huggingface/diffusers/blob/main/examples/advanced_diffusion_training/train_dreambooth_lora_sd15_advanced.py).
58
+
59
+ LoRA for the text encoder was enabled. False.
60
+
61
+ Pivotal tuning was enabled: False.
62
+
63
+ Special VAE used for training: None.
64
+
checkpoint-100/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9ea8d0ede196962f8522635ce7a23ae614063a5b28a44fdc9fc832bcba9246ca
3
+ size 4000378
checkpoint-100/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bebf83c9368f4edb8000eb7693df07399acc273734549be298edabe9ebb6dac6
3
+ size 3226184
checkpoint-100/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e831d18c1ebdd104a7b262572d3891f6e177fb065b40824ce910dc86d2e6bf06
3
+ size 14344
checkpoint-100/scaler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ac4a558c5b93581a5c41e2922404490319bcd15a10296c927a72a41012ff7f27
3
+ size 988
checkpoint-100/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f3588ffecab6fdc59d5797545775124e04ac64c243743d4a690d9999354ddf1c
3
+ size 1000
checkpoint-1000/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c0797b1ceb8ee49e3eb4412cb3d1e716239ccca393ccbb6346dac54847320e8f
3
+ size 4000634
checkpoint-1000/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1377e1aadc0f221a6b85d478023f051d0adf486299bdb7e4ed8d59c5d8e7fe87
3
+ size 3226184
checkpoint-1000/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c82886c29b7ae5d28f4f311d4f08bf5cf624f1dc8ccb013c66bf11d48b651ef8
3
+ size 14344
checkpoint-1000/scaler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9d8fdcd0311eba9854fff738038ed4c1a269832665b4d88ba4e4e3d02a1a7e0e
3
+ size 988
checkpoint-1000/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8d7258a11306d42e09b57c05452da8fcb38344831c25ea42d254758c51253625
3
+ size 1000
checkpoint-1100/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d294e5aecea0d4a67915047cbe0522190c19bd01b2f6d61a6d669e8890b2322c
3
+ size 4000634
checkpoint-1100/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:37671868256fc33eb20387a431cf0f58cfab16efcdc4da55d26a7ca129c9c9cc
3
+ size 3226184
checkpoint-1100/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fa84738f902f6ad534fdbf328151ae835ebfd08bbd77a7fb12c53dba2a6b3c9c
3
+ size 14344
checkpoint-1100/scaler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8f0a46d9dd0c8ca52db0e4ca97a9636ba567efd984bba2d6a64dc2538da6f9cd
3
+ size 988
checkpoint-1100/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:197a899a30cde1630252f1ed052ecc211e878201806d067cd512ce4473af2d48
3
+ size 1000
checkpoint-1200/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d4c42f9593aa2b4d214bd9b37c407c11b14789c377e50f4dc65beaa4c4c07e84
3
+ size 4000634
checkpoint-1200/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6486dc572a8f9dd5bc2f0781b668798c1d52a19dc5374a6873b6da3f6259c15b
3
+ size 3226184
checkpoint-1200/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0055e3c395ec28712d8952f6739f3c1e14839b57a24b784e9089b22a6d4e92a5
3
+ size 14344
checkpoint-1200/scaler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:942cfd7aded7d16363d1ae1a2911c01ef4e25f3c70ed059c88f1845d9b6c24dc
3
+ size 988
checkpoint-1200/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e19ada9ad4066130663c6732cd50ba2522734a4c1eba29ad14c6881928c824ad
3
+ size 1000
checkpoint-1300/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ad5a3e44bcb69f1fc6ce0adea66a9e6e5520331dfa0283667fddb60b1e261ed8
3
+ size 4000634
checkpoint-1300/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:94e994eb671617d44b594b5b7c9e1134222073d46ba9ad1328734a65ee7f5d91
3
+ size 3226184
checkpoint-1300/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:36cabd3e6e4b13476205bac30ad06be5bce62784b0874a3de98af62cf7827ecf
3
+ size 14344
checkpoint-1300/scaler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a272f6e17a5fc65b0768a91a85f6e55110a5951040e23ed443ffd3ab2367112b
3
+ size 988
checkpoint-1300/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9de08a63f90d1edb792be2481ad74572658bf08e1b3bdcacc39a66dcb11ae256
3
+ size 1000
checkpoint-1400/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:19d47e5193a0bc70b4e3dbb90a6ad43ab16712792bf937519e475b36ef390851
3
+ size 4000634
checkpoint-1400/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:47b8b3ea36213dcdb1f04473271b4556697c4c8e30d4a4083f703e11b02a54b3
3
+ size 3226184
checkpoint-1400/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a5ee088eb4fc0e01a29f4de2724eef9ffe4ad1214b9ba2bbd65189f7db647d46
3
+ size 14344
checkpoint-1400/scaler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:baba31a5e5063037a5c811de9cb04bc62c6c5f0f5fe6720b7d681afe6500d4c1
3
+ size 988
checkpoint-1400/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0dcd30476c3ed75c0102347e747f69f048f4245d0129fbdab373a407e8fe131a
3
+ size 1000
checkpoint-1500/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e477cf990ffe7a74b86516ce6ad0e792a82bf3b8cd9fde2e3b0dd56119fc4075
3
+ size 4000634
checkpoint-1500/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d522636fba5b5b6e788f61c4fc83d125aedd10d67a2010f903ab70e5eee92d8f
3
+ size 3226184
checkpoint-1500/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8bbc8202f0afc6d2b2a832ec39d3470b20e98a3b512a84b48740c8304fe131b4
3
+ size 14344
checkpoint-1500/scaler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c2a4b6e0ef05ca249f2d6b7f9f3ad1dff81e55842a962df795bb9740c17c8e92
3
+ size 988
checkpoint-1500/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6954e0b53fead97b818453f1babcb768a52d4365c1d5f0c3b86a804745d46b17
3
+ size 1000
checkpoint-1600/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b3d260da52b4e6fd77dbef82903cc400f15655f0a72c5af961ad1254179db8da
3
+ size 4000634
checkpoint-1600/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2d785324fc128b45218f87df41e6472de94d74b0f3d239160502546a2351b956
3
+ size 3226184
checkpoint-1600/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6f1bacf713e0d8a433499f3d380932a8bd20f214a2a5c3db4888991821444510
3
+ size 14344
checkpoint-1600/scaler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b59398e0bd00fd772ba1edbd2a9a8988f5e971e658515b53820ef5087cb843ef
3
+ size 988
checkpoint-1600/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d15d49c452b4c6464fdc247c538bd360c410afb581e299cde8941602ded160cf
3
+ size 1000
checkpoint-1700/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3252ecf9bb6f88c82fa7618c58efa788eb5e4707855f66d36204153ff7b2db6d
3
+ size 4000634
checkpoint-1700/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4a312d8dbd19e9e2197609b7d538fc83bf276a056da91066e46e5947539ae0dc
3
+ size 3226184
checkpoint-1700/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:306aaac9ba51af443f0e4415bc128555a8c1c5e2d41004334db608164a2d6e62
3
+ size 14344
checkpoint-1700/scaler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:759caaca6050dce1dacd26165deca3524ef893ea0c59edc15b75b4035c139f27
3
+ size 988
checkpoint-1700/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5ed0d6b4ad361e2cd4c661cae2ab5fe973305b71d6bba1eaabb54ddfa4a50b1e
3
+ size 1000
checkpoint-1800/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2bfeb8951feb0945ef484d59e4b9ef1604fd281c329a07d9d05659227188c573
3
+ size 4000634
checkpoint-1800/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:db88b496a55a4ac15c85a61c040b0951b2a545a0e133d775453b0dcba2f93060
3
+ size 3226184
checkpoint-1800/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea74f8429b554b9509c4a87e612be040c2872818d63a684fee012a1dacdb6ef4
3
+ size 14344
checkpoint-1800/scaler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1c82eba5f0b1f93e15ecc4950174958b6ab54879225c616d56316b6b87157e59
3
+ size 988