xgemstarx commited on
Commit
0c8dc6b
·
verified ·
1 Parent(s): 0eb0405

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_128_step_16384_model
22
+
23
+ <Gallery />
24
+
25
+ ## Model description
26
+
27
+ These are xgemstarx/subset_128_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_128_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_128_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:8c9a32708d6d6bf28597921a5e71fd1e00d7093f244cc97bc0d94136d1ef917e
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:da366f958d5932416f2d96d079fd0970513adcf03793357b61beefbcddba0f3d
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:8ccd13b5bb551dc7ac223c89daba1a135a88fc4730e8efa370d3964808831e61
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:bc0b7da5342ccffc72fba525ddefe4d75b74a49fba14e85786d0d87c4b0697b8
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:3c8a31f7ade5f86b68ae4d6ed81857855d3909799f915c104630ec172ef8968b
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:39e38d3b125239bd00e376df7c91f849521ceef464b9fac79772515b78e70c17
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:9c9f8923faa1a4808e8bd70db7664a4399710acebe5a3176832d4c8672d31ec8
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:ad94eead4672ca766dab15f7b9481f7ea70ed5061a7777dbe0c952a32443c162
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:a8d05c9f3ba9b2cc9e76350f7ef3c15d771d7a6d08989c93ce3eb4245dcb8892
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:7609bc9cd20fea69ac190eb3d89a70837f33b2ef80b4d9efd653c2c78c2b79fb
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:71dbed093b83f58a1df0f632cc369995c555f899211ff57c2e0a59b9eb12f983
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:f2f7412c2739207a519992e690cfc0d5a4e8c58974217dc119d28b69ca365b79
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:31dc7eeb867208fe10ada47a84794e6fd60b5caaeddb20b75bc2f74b19074be9
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:030267d5eec51c9750984b6e31abd5b5c27ccfbf4223ab7688fbf45218e43548
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:8845eb3bbb281fddd7786496297692aa6560737be555d2d6b74cfbad25284b20
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:3c68240d1479d13a53ae2d690670ecede38c85b05ed38ba10d36f2255ce2d278
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:3083d03ae46101814def1451f4e33c48b783edfc5a115592d8400809a561c218
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:15fa70c98e95a42a7a27aa32721c968a1dd50baa87307bf1677cb4fcc8e8560e
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:74cc8f176d999b740cd343d0aa1ceea92f8dfa42f1187011e1727f34893c7e81
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:29f9912304dc8fa3593220d468f72f815e244d98e4d7491afe7fdc23a945e879
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:4888b8997683ba7a7cb59538c9b875c4149f2c68a6bf3caa16edfcfb05e99858
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:995d96128be1282f6b1e4f060496e935cf06a9b89b0218ce712d6abab70eaf65
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:3d63b2d19f648be7f0ec3915b60c0bb065c54cc02bf583b115e6e1ec7578d34a
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:2d4cf12cbb2d696d163c1bde2e540209a6146b4a39ce088ee4391ba153326a37
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:bac75c439372947546cff4112acab2070aa585df7a5db7aff18a169b8e8818c7
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:f5d4e147cc9362d43254c9ea12008a53595fa14d07c43206c78c561234d8edf0
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:5f9f3f8c49c45ac3238ae779c49982035abcd32ccc0d38e1979b0dea97ce4825
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:f5609cb9e9d49f7e8f5c14279b703bbeae3059a22b8b00d1557a34713d666815
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:85268d2530eff4b740272fb0c183202603148bd91ccf0fed22611ec7c6aff46c
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:cfb764f59c0617de6e992c0a5f9b276eb16f75b82f7d0cd6e31c08929398140b
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:6990ccbea89915f2b1837649e4380751b0dc14a579a020be804d0e3125b042ed
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:08e36d63171e684b907c3eb1cabc71b2c9fb01182a0a0222ee4ec33114b1129b
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:60dfbe622919df449ae428c578b231872a2b373511b10065268505dfd269dd70
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:9959356496c1995e34e3c2bb51bc6ea3b808131c6ed9913fa0a68054087344c0
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:053da3c49fd997a6089ecf7f92867022a4b0595be4612b36a99369d49bfb3f0f
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:9bba8a24b4466df90a110b68a5aa8ed8c6695db6e39efe087968a1e60c86c431
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:0c474d0b61c83257e75ec64476a328d0d971d4dcd59f98daae8c69a3a9d4b5f5
3
+ size 79235394