xgemstarx commited on
Commit
7b50aa4
·
verified ·
1 Parent(s): d22ba36

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_256_step_16384_model
22
+
23
+ <Gallery />
24
+
25
+ ## Model description
26
+
27
+ These are xgemstarx/subset_256_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_256_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_256_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:057e4004ead38ffe14c41add65e8a7446fd8b7e0b7971c4921a08543c292f5e9
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:951dff5e928821d0a542642b8f6fde89fea0cdd99f0e9d84488e8b558b6e6b22
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:a94c59b73e107468043a823d6bfe79901f0123bda057633be2c19f3fd1a4946a
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:bd212ca561640ef28d91caf6ed7080f447dc42cc62f065e06ddb1640e9103a75
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:c0db3c31652faf527064ac5094ae4674c9ae755cd8deaca0fc507d7456c0a0da
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:5e7b59f58d192f0d828a43bf37ed10514e7fa5a0db4d3dcde3f1ecaaf94af579
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:37b572462514d700076e4091b67a7d49e2ba5797736382816d84d31dff7fac83
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:33737c43588871bb04dc5d882f5864c7a2f53cd0ad6c76a18d2c64704e568959
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:9bdcbf34531d5d8b509f1615d5445c2be16fdf4a629c71234ed618541226c21e
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:93089dbd57b84ccee0ad71ba469e614c9318c061e76d9490d0eb8ced9f1e25f6
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:0cea6d67a8cf70b3e84158854b2139b3abd20224790e949b6fc6813a71715966
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:4ce7feb98cd63c9b4ef933a1244c3f52a238cd291e255d2410e6275bc12b37eb
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:9289e5c1f7978103be1076d990252c8d7b8d163610827d8046c3b18f7ac1840e
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:2341489f46127c715b2bf6fa3d8d5c83b735228b3c960b7f756635a0e5a9696f
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:58a25836e48e51dad9b63f19e53fc9305b25d98ed26da57a497b140427cbdb27
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:a801ba6f3cf8d42be363ad2b4f60cac34505b74f6e98f019d5a429fc1e8a1de9
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:792b07a541919f731d202b4072d173e8bea0af478ad32106e06ceea5d0adece9
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:cd107d747104b7272a5bf7f6e6db2058a925526ed09eb17b71f5b801e7f12313
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:c67d3ca41087c1d2319da4bdb0825252918864aef1f8b33cc30b2e1ee2c4d9bd
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:35c74dff569e101c85929db1805ac138e85c6c6115049223ebaf3e5a85fb5153
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:dbf5980112d38ae6487140da2aee41cd61ce83fa9862e83fdf2f927478c97230
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:e58d185c6b3f869c9a294c7b8cc63e4552f0a994015b2135183680653aa221da
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:b892e34aa5df1bc99bb4265dbbc55ad316684afc0bef88b2c36b66fa14b5e1e6
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:e3d207530fdd706e242e3454c5f5d02140258dbf131c1d2a16ce6f04e3ecc2e2
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:d6434cb0394b438582b7d0d91f465b8291a8903c83a5e1e9633fa2bd988916f8
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:dc4e801c511652137b4dba965297bc27f46ea16d72c6ef1abf4d3c8becf9da6d
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:5174d455c64a0ff442750d9e074b2aee26f62e55169cfe05fb4f7a1670814e36
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:27b8d4ff355ee678b9428f9bfc7d904fa97b8afec4a57dea52e8b6e8ae55a71e
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:53bb5867ae241056319446c53607808a3b39aca74a21adb55a6e9cfd05fac6a1
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:509bb0ad2aa1c439fd252c6ef493da43f3de6b7828c1dd8909f1a61bd1b34b10
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:dfcd1e631c3bb6267f531ce9baa68c156ea1d7538bfff3a8981a1e38e0f5495d
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:d67490e6badf463f77fd028bf84fd309d3a2525986436c15736ee8bf8dd57328
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:7416bfc0f45fff58a662f0a344ddc4d570543bef6baeae34561d32e9841291a4
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:dcfb5d1261342c66a1500246700ebf6fe644ebce4961b55dab95a672dbd3f671
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:d38cb2ed0ed594ac3d2087d6f2c90e45a6067249c24a77cb86459ec16c19b23a
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:2a5e2b34fe0a629118daff7bc4ae65e67f11512e99dd434e4a6bb030fbb6d3d1
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:6f4956f27ae7ec6e76d5a090739e24c2708bcef2acac1ca8631fa2aa697c6c4a
3
+ size 79235394