xgemstarx commited on
Commit
a112230
·
verified ·
1 Parent(s): 2add304

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-10000/optimizer.bin +3 -0
  7. checkpoint-10000/pytorch_lora_weights.safetensors +3 -0
  8. checkpoint-10000/random_states_0.pkl +3 -0
  9. checkpoint-10000/scheduler.bin +3 -0
  10. checkpoint-10500/optimizer.bin +3 -0
  11. checkpoint-10500/pytorch_lora_weights.safetensors +3 -0
  12. checkpoint-10500/random_states_0.pkl +3 -0
  13. checkpoint-10500/scheduler.bin +3 -0
  14. checkpoint-11000/optimizer.bin +3 -0
  15. checkpoint-11000/pytorch_lora_weights.safetensors +3 -0
  16. checkpoint-11000/random_states_0.pkl +3 -0
  17. checkpoint-11000/scheduler.bin +3 -0
  18. checkpoint-11500/optimizer.bin +3 -0
  19. checkpoint-11500/pytorch_lora_weights.safetensors +3 -0
  20. checkpoint-11500/random_states_0.pkl +3 -0
  21. checkpoint-11500/scheduler.bin +3 -0
  22. checkpoint-12000/optimizer.bin +3 -0
  23. checkpoint-12000/pytorch_lora_weights.safetensors +3 -0
  24. checkpoint-12000/random_states_0.pkl +3 -0
  25. checkpoint-12000/scheduler.bin +3 -0
  26. checkpoint-12500/optimizer.bin +3 -0
  27. checkpoint-12500/pytorch_lora_weights.safetensors +3 -0
  28. checkpoint-12500/random_states_0.pkl +3 -0
  29. checkpoint-12500/scheduler.bin +3 -0
  30. checkpoint-13000/optimizer.bin +3 -0
  31. checkpoint-13000/pytorch_lora_weights.safetensors +3 -0
  32. checkpoint-13000/random_states_0.pkl +3 -0
  33. checkpoint-13000/scheduler.bin +3 -0
  34. checkpoint-13500/optimizer.bin +3 -0
  35. checkpoint-13500/pytorch_lora_weights.safetensors +3 -0
  36. checkpoint-13500/random_states_0.pkl +3 -0
  37. checkpoint-13500/scheduler.bin +3 -0
  38. checkpoint-14000/optimizer.bin +3 -0
  39. checkpoint-14000/pytorch_lora_weights.safetensors +3 -0
  40. checkpoint-14000/random_states_0.pkl +3 -0
  41. checkpoint-14000/scheduler.bin +3 -0
  42. checkpoint-14500/optimizer.bin +3 -0
  43. checkpoint-14500/pytorch_lora_weights.safetensors +3 -0
  44. checkpoint-14500/random_states_0.pkl +3 -0
  45. checkpoint-14500/scheduler.bin +3 -0
  46. checkpoint-1500/optimizer.bin +3 -0
  47. checkpoint-1500/pytorch_lora_weights.safetensors +3 -0
  48. checkpoint-1500/random_states_0.pkl +3 -0
  49. checkpoint-1500/scheduler.bin +3 -0
  50. checkpoint-15000/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_1024_step_16384_model
22
+
23
+ <Gallery />
24
+
25
+ ## Model description
26
+
27
+ These are xgemstarx/subset_1024_step_16384_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_1024_step_16384_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_1024_step_16384_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:02f9f3e5e71bf28cc218d1a679c4318a06530feea6a4c87bb93e26dee6cbb09e
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:f854914fbadbda5dc31ea6413ebf848bba5053cbcf3ecc5f34ea4864dbca6dd4
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:c988211a0aa492805b98b66288cab9273aa967178025c6414c34bbcb8204d7c9
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-10000/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1ebf6a23fbe5fad271b301b16f2ef5f96ecf759e6d47143f9f8cc249a1e08847
3
+ size 79235394
checkpoint-10000/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c517e71c89ff0201d70692c02a99f858d2aa04c411d04f909381031c5fce0050
3
+ size 22504080
checkpoint-10000/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5701a1a44d62e939accf82449172f24fc8ede7596e9b06550c3373e1f209a86c
3
+ size 14344
checkpoint-10000/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7ae2083b213c28161e0936e8f3633ccaca4f027a57b1af7844d85b9b3490f9e1
3
+ size 1000
checkpoint-10500/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ca1620e18f6ca0276562921ca2ba908afd8f25ed88942824320a0ad2ae4123e2
3
+ size 79235394
checkpoint-10500/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:acf5a265bee444a085643438de4b7c0cc095058e21f233512701c80b087bd403
3
+ size 22504080
checkpoint-10500/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cd7478ddd9991ad2ecf0e8c905a2374604aa16ba4773bce8688919240b57d930
3
+ size 14344
checkpoint-10500/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2f3b3f2a4aa1152475af2db382a83e611dddb373f09c93c33161021deb0be14c
3
+ size 1000
checkpoint-11000/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c0040e7cbdb3c102c581944480149e0974dd5c0bfa140a47edfbf085d180a4bb
3
+ size 79235394
checkpoint-11000/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:89c0380d8a32dde8e455e6f18b8bca9948dde073b9731525a1a63ada2898b1d2
3
+ size 22504080
checkpoint-11000/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e66f8d0f0e3a8719b14c543ab23fdbb1ae2260f5c90628ef5b9d0794548bf269
3
+ size 14344
checkpoint-11000/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:94db421253f9ffd02fdb4a870323b71883d28265156a2901381d8d317e95ac4a
3
+ size 1000
checkpoint-11500/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:61fde89de149d1420124f0cb032036d8ac44aa8a66cee0bc2ba1ef380d95b806
3
+ size 79235394
checkpoint-11500/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5dc44566d4ef27ef89b7a71d015e833b3e7affc6ad010a91c3a25e1692ee3895
3
+ size 22504080
checkpoint-11500/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5fd2e57c04eca29c3eb64d0deebc0acbb16395642a23d4f656ced0100b569894
3
+ size 14344
checkpoint-11500/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a4ce018199cf42dc50394b01572d8f138e3aa7bffe393e52bebf1d86c365097a
3
+ size 1000
checkpoint-12000/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:87b7997a57deedd4f969e56dcb1d73f64e432815957a62bc95f438234fecbe81
3
+ size 79235394
checkpoint-12000/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:243f686b9a203fc5dc8fce0e93dcf0d2c10d0515b599669b1a3c81e29463b50a
3
+ size 22504080
checkpoint-12000/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:650b3c4fd0d02e741eac5332b3df8a008a27ad7681352813746ac5443f7bad9d
3
+ size 14344
checkpoint-12000/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea5f642d713d75048538cc4f1c2623ea1f99759b747ed2d77a3acd1514a844ca
3
+ size 1000
checkpoint-12500/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:114c035466197257d0b447cf772d2afb16056cf22062f7d309756cc2f0ef6ee2
3
+ size 79235394
checkpoint-12500/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b5e1d18b1ae2c0b2ad20fec3cbbd5ba711a9e0d63af16f07887f4e190f15cdd6
3
+ size 22504080
checkpoint-12500/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6bc4b535ed3f8c43674ff6b1999ec6f790a442dde434a982b868d45f286e6f19
3
+ size 14344
checkpoint-12500/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:51901022373fb9363d4a5d0f3941345f25e1820b509aab68faf19f64e3ae8273
3
+ size 1000
checkpoint-13000/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:677b97a9302c085403a6619d14fb856e326134eba50b0c1c11bc656aa30e5eec
3
+ size 79235394
checkpoint-13000/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5d3fca3ac3f030c1ec552b1e0cfe780f3d7a3057f13089ee4c7a09c0206a0f0f
3
+ size 22504080
checkpoint-13000/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7e9f9f4adab5c613e52b38a2a1cbed52ac81a7d5710cd52ec92e09b63795deed
3
+ size 14344
checkpoint-13000/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:21a9ecca3b97c2c205faf8f1d0cde8d7a3c9ca82fbeb114906a94faa804d8965
3
+ size 1000
checkpoint-13500/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b54ddcabacb5513471155d912e98868a13886789f58d11f76c3607fe6ffc8b0d
3
+ size 79235394
checkpoint-13500/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:70f9689be957fa62cd8dd8c9e95e06dd7ff9f56a5cf03e0caa235a4f91ed0b65
3
+ size 22504080
checkpoint-13500/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:346f4e63003ab3caa4e9bd776b4bc4a3102da729fe32bcbedea6eeaca8362d59
3
+ size 14344
checkpoint-13500/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1af608a7bfd5460a71c7cf0d2e3488854f1c7f0a88515746ccf2da0aff48bae4
3
+ size 1000
checkpoint-14000/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:67106d3c11b5756b9f53c413a27be8febdfe10e17329a37c05dce60a6bfe54df
3
+ size 79235394
checkpoint-14000/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:70ad98c57e9408eebcbbca316c30bc04f3741ae0e342daf9d30e8773a387d013
3
+ size 22504080
checkpoint-14000/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cc2c651b1fbbd706bca9c9cc7436f76f8a6b40e91ba71d6dcb8726cd646d9eaf
3
+ size 14344
checkpoint-14000/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:27782eaaef95886878647d2ef2cb083c5bd5e550fb94e20d9a6da7b1a0ba1ac0
3
+ size 1000
checkpoint-14500/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:06aaeaa31126f1213030696041748b6adb995f71713af03753a280425c42c9c9
3
+ size 79235394
checkpoint-14500/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d90907b0c145ce020d55af74153a494197054e9331a99aea3c4c4e21ef2e522f
3
+ size 22504080
checkpoint-14500/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ce0ef02567dca04d6186553f9b95db539b8a155e22af32af8b16ab57d49a9611
3
+ size 14344
checkpoint-14500/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e8e81645a31b50975aea0139a4195ae1686f449956b3a24a0c0d6ab2974f6070
3
+ size 1000
checkpoint-1500/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:276b0ad4b1076bb048cc465357f4c29c1e1cefc52492e6786cd3051884aa693a
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:505c8c855e7376b331d150be89297e1cb104e84b4f5526b6f27dee95e9e1f0e5
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:44284a175ac97cbdd1f952169610c7e0f9fe4ef060257823f2fd7a251366a9b7
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-15000/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2fa3c680f73a3a0695f6737829750a756c7c0a8338b71b0718b924b4c5830136
3
+ size 79235394