xgemstarx commited on
Commit
ce32e7b
·
verified ·
1 Parent(s): 6d42224

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_32_step_16384_model
22
+
23
+ <Gallery />
24
+
25
+ ## Model description
26
+
27
+ These are xgemstarx/subset_32_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_32_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_32_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:a939c75b6703cb2ab67c86c7a59d0b58f691fb290be694a7fe20976b45e43297
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:0f1074aa6874c3e25690d30e9a8ed8554e8f1d1bd656ba3889b4297dadaaee54
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:c1621dc7395c3f1a0e85a86e219d1df25dda6fcf94a72d457772ba581e974ccf
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:887d54f257bea5677b541e43d705b2d37f4cfe8fd30d78ee99d96ec7de264d2b
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:2f0e4260fd6a4f3db507f1d080dde2fbbd7ab0ccf8c3602eb2541572d6d9118c
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:452c1812039e86dd9704ae1052333fc1dbf7e49b5f1ffad01af9f7ed632c380f
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:a59fca04835106f4e78bbaf1cd9777f1e2f837f54e5c7d320aa9fc07d62e8365
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:ccf30f65a392c2e3a4beabf2e2383d9fbb3b56448b562a77f36b69fc98092d67
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:64ad6e8133a9410f95f5b43f26a39a7284da1d673e147bcb8f3255d5cbd33a29
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:cb493bc9374f3d1e5d239a60afb1e354f2d04df3b8065646d310a489f426b10b
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:02987a784ea24528e9f0e1915946a171e9d8188ef0f75a89b27540cf874fca43
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:97bcfc0863fe195d7bdaebd3be560b04d156e7b23eaf321b82101b9f0d9266ae
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:d48e5dc4a0ec5256c62095d89635662595879879faac4fea9f9a2402d4968c94
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:d9fafcc529747e87262ae2fe33b3ecaf3e21003cad9a6a6cf99422a2e58ce6c3
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:873b6e9da4b376b1caa6428cc86b0e466182a09416df96f7c9a2a3b7456d351a
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:8fd13752a64a7d31456001f116093b17ecbae9990084d9db6ef93d06befd7f1e
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:2e6a8e8b7a993486ad97727b652bf15d56db781670a355d24e7ad79ee788c3bd
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:ab3f972fffd35208f3f9814fa883581d0def3d357252f7565afa040791b7971a
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:e982df04b780f321516f26d5e59f28618471a7b2bca1c5319d797bb61280339c
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:029ee92367152ea8dd650220632318330a4167d764e0f16a507eb8d6f21be479
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:da1b3412b4c59ffafcea6aafaf3465411e7320d416e37f0a77fca334e11d982d
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:7b33cd90f99d7edecb5465a9d5cb6090eb62a5c53be851fb9b9ead92e2fe3d22
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:c50b49beac44781a94f541a06035d6db4fc4a4573b60892e920bcaddad8926f4
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:d9c8613a0bf831d5708bb59b69b21e2dcaa0b6cf6c5a6a98df4acd2b2a9dbb16
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:41a27d8684893069e4c9610e455ecb7a38d80d009efbdc2de92d78bab13256c2
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:de649664519ca6eafdcc89999d58d5a93bda1268e818b3f5058cc1fdcf7c1d5e
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:a3634eaca8bd712f323908723b6afdac0c43116a7d4e65beb8fa129bea311a0c
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:3a08358f0f28f3a8ee23f1eb954ed4760eac86f55609cde9a53cf873e42461df
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:38945b6e833b2df2a1ad25305cad00de727ed2125fc26d979c4c655ff8aa8038
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:e5a05a5cf987508de735b3c558c254350eba1606b1ff5f12a00fd1fb1688b785
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:769bb7805a2f0073fdeb3f518e861ec291564e1736d5b44cbb4274e008c9c4f7
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:ea980541f7aa8e33adec40b20ef7fb39273b741a775b1e9017476a093eb9a0a3
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:3b65f5be85c9b996cc12c624c80d0e18bf62d17166629d7166334c71699112a3
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:cc33b92cfc1cb7be0fe01edde19c3b31aecbb0407579cffa90755bf52de3a95c
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:67cde8b456bff0fb06ff63d5befc3c3feebc474a289a804c9292500ab9b74b07
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:dac699a5e4a2baef2fd54d824244f8aee1813bd3da6c0fa50338431970f15575
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:d07ce6cb3fe7db108a09520c76cc8f1cf2a66bf94f516d2ced5217d96d4391a0
3
+ size 79235394