xgemstarx commited on
Commit
0e80916
·
verified ·
1 Parent(s): 047e09c

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 +72 -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-1500/optimizer.bin +3 -0
  7. checkpoint-1500/pytorch_lora_weights.safetensors +3 -0
  8. checkpoint-1500/random_states_0.pkl +3 -0
  9. checkpoint-1500/scheduler.bin +3 -0
  10. checkpoint-2000/optimizer.bin +3 -0
  11. checkpoint-2000/pytorch_lora_weights.safetensors +3 -0
  12. checkpoint-2000/random_states_0.pkl +3 -0
  13. checkpoint-2000/scheduler.bin +3 -0
  14. checkpoint-2500/optimizer.bin +3 -0
  15. checkpoint-2500/pytorch_lora_weights.safetensors +3 -0
  16. checkpoint-2500/random_states_0.pkl +3 -0
  17. checkpoint-2500/scheduler.bin +3 -0
  18. checkpoint-3000/optimizer.bin +3 -0
  19. checkpoint-3000/pytorch_lora_weights.safetensors +3 -0
  20. checkpoint-3000/random_states_0.pkl +3 -0
  21. checkpoint-3000/scheduler.bin +3 -0
  22. checkpoint-3500/optimizer.bin +3 -0
  23. checkpoint-3500/pytorch_lora_weights.safetensors +3 -0
  24. checkpoint-3500/random_states_0.pkl +3 -0
  25. checkpoint-3500/scheduler.bin +3 -0
  26. checkpoint-4000/optimizer.bin +3 -0
  27. checkpoint-4000/pytorch_lora_weights.safetensors +3 -0
  28. checkpoint-4000/random_states_0.pkl +3 -0
  29. checkpoint-4000/scheduler.bin +3 -0
  30. checkpoint-4500/optimizer.bin +3 -0
  31. checkpoint-4500/pytorch_lora_weights.safetensors +3 -0
  32. checkpoint-4500/random_states_0.pkl +3 -0
  33. checkpoint-4500/scheduler.bin +3 -0
  34. checkpoint-500/optimizer.bin +3 -0
  35. checkpoint-500/pytorch_lora_weights.safetensors +3 -0
  36. checkpoint-500/random_states_0.pkl +3 -0
  37. checkpoint-500/scheduler.bin +3 -0
  38. checkpoint-5000/optimizer.bin +3 -0
  39. checkpoint-5000/pytorch_lora_weights.safetensors +3 -0
  40. checkpoint-5000/random_states_0.pkl +3 -0
  41. checkpoint-5000/scheduler.bin +3 -0
  42. checkpoint-5500/optimizer.bin +3 -0
  43. checkpoint-5500/pytorch_lora_weights.safetensors +3 -0
  44. checkpoint-5500/random_states_0.pkl +3 -0
  45. checkpoint-5500/scheduler.bin +3 -0
  46. checkpoint-6000/optimizer.bin +3 -0
  47. checkpoint-6000/pytorch_lora_weights.safetensors +3 -0
  48. checkpoint-6000/random_states_0.pkl +3 -0
  49. checkpoint-6000/scheduler.bin +3 -0
  50. checkpoint-6500/optimizer.bin +3 -0
README.md ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: black-forest-labs/FLUX.1-dev
3
+ library_name: diffusers
4
+ license: other
5
+ instance_prompt: a photo of xjiminx
6
+ widget: []
7
+ tags:
8
+ - text-to-image
9
+ - diffusers-training
10
+ - diffusers
11
+ - lora
12
+ - flux
13
+ - flux-diffusers
14
+ - template:sd-lora
15
+ ---
16
+
17
+ <!-- This model card has been generated automatically according to the information the training script had access to. You
18
+ should probably proofread and complete it, then remove this comment. -->
19
+
20
+
21
+ # Flux DreamBooth LoRA - xgemstarx/subset_8_step_8192_model
22
+
23
+ <Gallery />
24
+
25
+ ## Model description
26
+
27
+ These are xgemstarx/subset_8_step_8192_model DreamBooth LoRA weights for black-forest-labs/FLUX.1-dev.
28
+
29
+ The weights were trained using [DreamBooth](https://dreambooth.github.io/) with the [Flux diffusers trainer](https://github.com/huggingface/diffusers/blob/main/examples/dreambooth/README_flux.md).
30
+
31
+ Was LoRA for the text encoder enabled? False.
32
+
33
+ ## Trigger words
34
+
35
+ You should use `a photo of xjiminx` to trigger the image generation.
36
+
37
+ ## Download model
38
+
39
+ [Download the *.safetensors LoRA](xgemstarx/subset_8_step_8192_model/tree/main) in the Files & versions tab.
40
+
41
+ ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
42
+
43
+ ```py
44
+ from diffusers import AutoPipelineForText2Image
45
+ import torch
46
+ pipeline = AutoPipelineForText2Image.from_pretrained("black-forest-labs/FLUX.1-dev", torch_dtype=torch.bfloat16).to('cuda')
47
+ pipeline.load_lora_weights('xgemstarx/subset_8_step_8192_model', weight_name='pytorch_lora_weights.safetensors')
48
+ image = pipeline('a photo of xjiminx').images[0]
49
+ ```
50
+
51
+ 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)
52
+
53
+ ## License
54
+
55
+ Please adhere to the licensing terms as described [here](https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md).
56
+
57
+
58
+ ## Intended uses & limitations
59
+
60
+ #### How to use
61
+
62
+ ```python
63
+ # TODO: add an example code snippet for running this diffusion pipeline
64
+ ```
65
+
66
+ #### Limitations and bias
67
+
68
+ [TODO: provide examples of latent issues and potential remediations]
69
+
70
+ ## Training details
71
+
72
+ [TODO: describe the data used to train the model]
checkpoint-1000/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:69532dcaecfc84cafa9c8ac565c0ca36d34b9930c25d1d8157b7d5921ab11588
3
+ size 79235394
checkpoint-1000/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d4c92529956fa8eb9997439ff56cc72966a55e87ca96074cebe4c1195ac291a3
3
+ size 22504080
checkpoint-1000/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cf08311c5c27142ab4864244fdc2e30daf9c894c144cc049f20b38d123b5a1cb
3
+ size 14344
checkpoint-1000/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e55c075b40ce3ab6db2c27ecf3b4c90bc4e612fff3a226e651c44881d6a2404
3
+ size 1000
checkpoint-1500/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b8537f2e4c87b1ed40b05c5259bdad4a792e96a4fbfe37ffda62a9348058cf7e
3
+ size 79235394
checkpoint-1500/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e7378104ec8d479a7b3f6723111957e4c4e06d77aae021bd3d22470286e75d8f
3
+ size 22504080
checkpoint-1500/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a5b539fc53b2c866ff80a4241363e1c883504628d17489d6df6f37ff6b05a480
3
+ size 14344
checkpoint-1500/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ab46152b551fb24cef10d97aece42dc7616a1a1b456640ac3f526f7abac6e0e3
3
+ size 1000
checkpoint-2000/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4ec4e642b16aa493621ec1b1b99ce7da45d0600b126d067956fb1023f27ec8f9
3
+ size 79235394
checkpoint-2000/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d1f4fd45bbe1d6b9b1126a5b573ab8c8ee9e6920e0cee5822bd680af9712e6de
3
+ size 22504080
checkpoint-2000/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b8468dc64ff14b616b01d41b408f028284966533797bfa83a3e644a3f194126e
3
+ size 14344
checkpoint-2000/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:493642aa6dcb7f188f018b7691aba9287429fa60e412f5f63a1430602afc2557
3
+ size 1000
checkpoint-2500/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:29dd4e333b2afc1ee404e9ade3c6f067ac0b0075eb2332460fb7955ce41efa2d
3
+ size 79235394
checkpoint-2500/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9a5046838964be59031899c147e11abb8d80be3058fc9c66d0dde31d48fd3d59
3
+ size 22504080
checkpoint-2500/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4745da4da47e9816d749cecb601c3007f74ed28a637605cfbeabdffc01c2ccc3
3
+ size 14344
checkpoint-2500/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4c6b8457d8ed1c4a1141131dfb2267827bfa81f1b7214dc7a16e697888e0382e
3
+ size 1000
checkpoint-3000/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a9315c3613bc97b0e6c0479aa6d8359e1a86aa33dc644959d25d4e019747ecd5
3
+ size 79235394
checkpoint-3000/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:43edbcb84ab31d57bd117ab8e64b9345b7a035c6541f57ef617be869ace9c5ac
3
+ size 22504080
checkpoint-3000/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1e944fffb70706045d1473a4a37ab1e8348e71a236b0b88c07a4d471424e6607
3
+ size 14344
checkpoint-3000/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f64a65ba99578a884b4851fbf9e08190ff85a9f85bd177a7358113febdc91ff8
3
+ size 1000
checkpoint-3500/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a3af174681eab41996bbf70083f71287b68a8c138f4504acfa149b5680504999
3
+ size 79235394
checkpoint-3500/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a12b812b89f8e1dc70b4c570eee5ab15f829479c9ba64cc25bfa8c60b9fc12d0
3
+ size 22504080
checkpoint-3500/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:906e72d382c7726206a36976de0ac4b011429a521a48bd1fbb499af848bc0bc5
3
+ size 14344
checkpoint-3500/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:adc552d20c458f353da0a8721d9dd31f803a69d5ff195a78140771c51334d243
3
+ size 1000
checkpoint-4000/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a249cb113e0b33ef50d648c7e7d21dd50b18dfd8987e1fd22ca36ddfce272b8a
3
+ size 79235394
checkpoint-4000/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:12117a6d07e7758d1a5544160598fe49880a967c6994951f956168a881af88a3
3
+ size 22504080
checkpoint-4000/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9c35eecc61439cd05d1b0722c6dc2af7062b1fbb286cde2ae57445ee681ac3a9
3
+ size 14344
checkpoint-4000/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4df1ca2241fd5ca43d2e996891e7ed9a2640954f8b09f2f2d27868cad17f02fc
3
+ size 1000
checkpoint-4500/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b69dd72e3b541861242d9e76644e882d4ee6a44baaa4bdd9ff9fb53af78ecae0
3
+ size 79235394
checkpoint-4500/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d4516b42b9ebb39476ca95bdb16f4114eb4360a1753db0d73e71d94f3e19e9d4
3
+ size 22504080
checkpoint-4500/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4e102a9c5a472b66fea0044277e3505924436546f67e2bbfb3407c0c7393efdf
3
+ size 14344
checkpoint-4500/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:591e2299722b8f4e92e73e5c3bef3f0ba886f1f5ee19a79641ff52d729596fca
3
+ size 1000
checkpoint-500/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:742248dd57dafe216e63e992a1ccc68965ad165595ba25b011559e03840e96ca
3
+ size 79235394
checkpoint-500/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:68bb176237feefbc567168ea06090d141489850ba02e7c77baef8590c3079730
3
+ size 22504080
checkpoint-500/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b547980d2788636fd26b5a13743b90e5d870c9643c0de0f3d12bb35ae29baefd
3
+ size 14344
checkpoint-500/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d64e43d780f79b2c41c77b3638f3da55c2a3273c6e72a559cfe6fb2b05479b63
3
+ size 1000
checkpoint-5000/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c2a2789340d98de452718a83f86fb1f76f816db7cb4c8437816b08c65c46753b
3
+ size 79235394
checkpoint-5000/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8efc0e72a02e5ec3ad7845c083570ef08e82b0bfb122e50b882594ca23f96095
3
+ size 22504080
checkpoint-5000/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5ed8d53f8515f406f18921b6855962512c37f2f1c9291750abd21729e73743e2
3
+ size 14344
checkpoint-5000/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f039d679bf1c6d588e0b30b4c34a79b4ee51e23315f03dbab7ba3e60691eef02
3
+ size 1000
checkpoint-5500/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7cd84ce66b64fc784ae7bc6a0acd47ae34d98875ba8bc8649382fcaf606675de
3
+ size 79235394
checkpoint-5500/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:73a6b65cd6dd276155c31eefc42345aec54f34f0befb0003604f4cb6ad9d2a24
3
+ size 22504080
checkpoint-5500/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a106dd2fb703d7607d9d357b5f0481a58a4a59523d1072da99b70852198b7a05
3
+ size 14344
checkpoint-5500/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a92cf9c50be4d33048cbc0905db44f43c27d82a2d364c5ad274b4ef9bc993f23
3
+ size 1000
checkpoint-6000/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bfa201bd00feba5c80dd3085959875a657f408f18faadaec7526a57bf2a5a5e1
3
+ size 79235394
checkpoint-6000/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7cda41cd5816078046518ca85e01173b853641fbdded827c423529fe96caf307
3
+ size 22504080
checkpoint-6000/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fa1e616d0b6973b12b7a0abc7af5bb86cba14433054f6fa891b67daef6d628ab
3
+ size 14344
checkpoint-6000/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:630309a46977ef427193aa2c00115f5ecbcc613f1972fdf4e605b58dcd4a5fcb
3
+ size 1000
checkpoint-6500/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:32bf3b313df4d25b6033bfd8be541d14f53b188e66354bfc098bb61e20491a4d
3
+ size 79235394