xgemstarx commited on
Commit
040cc7a
·
verified ·
1 Parent(s): 5bfe837

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_16_step_8192_model
22
+
23
+ <Gallery />
24
+
25
+ ## Model description
26
+
27
+ These are xgemstarx/subset_16_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_16_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_16_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:7a0bc3f3061286f49acd822fa000b09aad94b2069f0469a1f1b1773f2de9b473
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:fc05082b5700436ab2d0a32488e7b72e9aef497f5e5ac4cb1f868df3cd8ae2c2
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:269aae6dd602189b72a20095ad7dca5cf1304c0af5a02e1dc614e66aaac50e57
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:929f0ddfc513aed73cf1c6551b4604260ebab184c97674c6e6ca0d59d34638f4
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:09ff744f35b68f2136093b2488ef8448ca5ccbb978d855ce57be916abc34d8d5
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:1018bcd16e02b849fb389114a1dfdf21f8c1db659c6ca3677495f13dea111ed3
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:5c4f116666a2348e23f2f76f503b717153bbcbb470f37387a27582406653012f
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:c1259ca89596b8662f51be1e8b0771faf270910ae67b3b7c40cabe5ba7161c99
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:d5602fed86682b41699bd654a8e0f977299ee7fae4284e3ecedf651dea3bcc48
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:ce6a30dac456dcfb036540ae7eeae453f1af7e5084c6099313b8103ab68834db
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:b417aed364cb1bb33b55ede1975c6cca48105273f1866b7c5ce88dec9995a2b0
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:c35e6b3641eb6635f12d20e52fe4c3bb7d72bd4d5f74b445f9ad51c1be9f2328
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:8d67eb0aa587b5ec088d237bba98cb134811dec5a00530d8f413b1352850a8a9
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:812bf8a3ee335e054402b69abbae7c798c5d7b0e4d0dbf263282e239a8920d04
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:9e8f4f8882185136adbddb3dd48f77d4bdb41e0b4d5fcfd67eeb4cd4e4afd442
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:74ff104405f2fadc217b88b181cd80702563eb9058bf436022731b4c79f2c1ef
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:7beea6fe55593587b9b355c3c7deae931a32a5ba085c893979a6ca355fc5bad7
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:093efedae271adb6dc59d48cd9fa54f0114b525525412d0a7a135511698e7238
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:2d19356632d5727f037f22f29746bcfd488898e14904a751763f55e5d88999f4
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:cc5431cf773a921456a67f7fec713d9563df26368dd322143cfebd62044633fe
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:c40937153e8561abc6a0d8c93f0737d7d8ef40de915f7aa64543f44e38f89f31
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:fefa2345dc4304af08342076d9ae08006c1dc249cbf4f0727559e23483e651fa
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:9b3706388997ffadb0af68e5cc7b34a7ba4114481b7ee59b8e159b29bc046062
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:ca8aef66f2ceb83f755dde0455e14bcfdbe85f0bff244107d3af660e42d635be
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:4f85db1751bbae1e20249795ce7e9d1547bf2be03c93f814ed39b04761e2ad1c
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:056da6017ec01cb9f0b192d5b3d5e8ee29a03dd902222f26aade0ec6f193c202
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:7f5231aeae5cbde913ccb0fac84620810bff9b52a9ffaae5ef2038545ef8cc24
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:f24c26f08d4d83efc0fbaf4204b48b548f0784ea225b957f98bf040336a447db
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:a4b2e81469d2266199ae10bedd0893a7381dd1eb24a7388ef126306388d62be3
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:63b6967b01da609ad92064f48c5b040689f0427b7160f662e86fec47dd82618b
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:9eee30ff50fd29f67f234ccd7796335e0e7d6f24a931e1616af4a22d6976c6ad
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:c9efba0758fdf555af29833d2dd415e1af88d484602adf8ab34d0ccacaffd703
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:9cd22bae2b364e51863ddd19a6cbfe020373bac1a3abbdf2def9285d3357adb3
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:752026bdb5da2046cc5b0b4b0655dfde51780b8bbed79ccb8ff318168f4bf029
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:4e5a21ab0e3f29b333b2c13cbdf5ffe9e55aa36b766dacdb577bf89bca8bf2e1
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:d6030b9cf026a305e93404585400d902cafc914511dd8fecdd18bf722a06463d
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:0dccad87ca02375dab2e5168074a61f91c640f98c8da3f484c01e27f9632c9e6
3
+ size 79235394