wangkua1 commited on
Commit
49b7485
1 Parent(s): 8465c30

End of training

Browse files
Files changed (44) hide show
  1. README.md +84 -0
  2. checkpoint-100/optimizer.bin +3 -0
  3. checkpoint-100/pytorch_lora_weights.safetensors +3 -0
  4. checkpoint-100/random_states_0.pkl +3 -0
  5. checkpoint-100/scheduler.bin +3 -0
  6. checkpoint-1000/optimizer.bin +3 -0
  7. checkpoint-1000/pytorch_lora_weights.safetensors +3 -0
  8. checkpoint-1000/random_states_0.pkl +3 -0
  9. checkpoint-1000/scheduler.bin +3 -0
  10. checkpoint-200/optimizer.bin +3 -0
  11. checkpoint-200/pytorch_lora_weights.safetensors +3 -0
  12. checkpoint-200/random_states_0.pkl +3 -0
  13. checkpoint-200/scheduler.bin +3 -0
  14. checkpoint-300/optimizer.bin +3 -0
  15. checkpoint-300/pytorch_lora_weights.safetensors +3 -0
  16. checkpoint-300/random_states_0.pkl +3 -0
  17. checkpoint-300/scheduler.bin +3 -0
  18. checkpoint-400/optimizer.bin +3 -0
  19. checkpoint-400/pytorch_lora_weights.safetensors +3 -0
  20. checkpoint-400/random_states_0.pkl +3 -0
  21. checkpoint-400/scheduler.bin +3 -0
  22. checkpoint-500/optimizer.bin +3 -0
  23. checkpoint-500/pytorch_lora_weights.safetensors +3 -0
  24. checkpoint-500/random_states_0.pkl +3 -0
  25. checkpoint-500/scheduler.bin +3 -0
  26. checkpoint-600/optimizer.bin +3 -0
  27. checkpoint-600/pytorch_lora_weights.safetensors +3 -0
  28. checkpoint-600/random_states_0.pkl +3 -0
  29. checkpoint-600/scheduler.bin +3 -0
  30. checkpoint-700/optimizer.bin +3 -0
  31. checkpoint-700/pytorch_lora_weights.safetensors +3 -0
  32. checkpoint-700/random_states_0.pkl +3 -0
  33. checkpoint-700/scheduler.bin +3 -0
  34. checkpoint-800/optimizer.bin +3 -0
  35. checkpoint-800/pytorch_lora_weights.safetensors +3 -0
  36. checkpoint-800/random_states_0.pkl +3 -0
  37. checkpoint-800/scheduler.bin +3 -0
  38. checkpoint-900/optimizer.bin +3 -0
  39. checkpoint-900/pytorch_lora_weights.safetensors +3 -0
  40. checkpoint-900/random_states_0.pkl +3 -0
  41. checkpoint-900/scheduler.bin +3 -0
  42. image_0.png +0 -0
  43. image_1.png +0 -0
  44. pytorch_lora_weights.safetensors +3 -0
README.md ADDED
@@ -0,0 +1,84 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: black-forest-labs/FLUX.1-dev
3
+ library_name: diffusers
4
+ license: other
5
+ instance_prompt: a portrait photo of a person. A cinematic scene inspired by Netflix
6
+ TV shows, fused with a nostalgic vintage photograph aesthetic. A moody atmosphere
7
+ with a spotlight casting sharp highlights.
8
+ widget:
9
+ - text: a portrait photo of a person. A cinematic scene inspired by Netflix TV shows,
10
+ fused with a nostalgic vintage photograph aesthetic. A moody atmosphere with
11
+ a spotlight casting sharp highlights.
12
+ output:
13
+ url: image_0.png
14
+ - text: a portrait photo of a person. A cinematic scene inspired by Netflix TV shows,
15
+ fused with a nostalgic vintage photograph aesthetic. A moody atmosphere with
16
+ a spotlight casting sharp highlights.
17
+ output:
18
+ url: image_1.png
19
+ tags:
20
+ - text-to-image
21
+ - diffusers-training
22
+ - diffusers
23
+ - lora
24
+ - flux
25
+ - flux-diffusers
26
+ - template:sd-lora
27
+ ---
28
+
29
+ <!-- This model card has been generated automatically according to the information the training script had access to. You
30
+ should probably proofread and complete it, then remove this comment. -->
31
+
32
+
33
+ # Flux DreamBooth LoRA - wangkua1/train_lora_db_style_test1_rank32
34
+
35
+ <Gallery />
36
+
37
+ ## Model description
38
+
39
+ These are wangkua1/train_lora_db_style_test1_rank32 DreamBooth LoRA weights for black-forest-labs/FLUX.1-dev.
40
+
41
+ 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).
42
+
43
+ Was LoRA for the text encoder enabled? False.
44
+
45
+ ## Trigger words
46
+
47
+ You should use `a portrait photo of a person. A cinematic scene inspired by Netflix TV shows, fused with a nostalgic vintage photograph aesthetic. A moody atmosphere with a spotlight casting sharp highlights.` to trigger the image generation.
48
+
49
+ ## Download model
50
+
51
+ [Download the *.safetensors LoRA](wangkua1/train_lora_db_style_test1_rank32/tree/main) in the Files & versions tab.
52
+
53
+ ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
54
+
55
+ ```py
56
+ from diffusers import AutoPipelineForText2Image
57
+ import torch
58
+ pipeline = AutoPipelineForText2Image.from_pretrained("black-forest-labs/FLUX.1-dev", torch_dtype=torch.bfloat16).to('cuda')
59
+ pipeline.load_lora_weights('wangkua1/train_lora_db_style_test1_rank32', weight_name='pytorch_lora_weights.safetensors')
60
+ image = pipeline('a portrait photo of a person. A cinematic scene inspired by Netflix TV shows, fused with a nostalgic vintage photograph aesthetic. A moody atmosphere with a spotlight casting sharp highlights.').images[0]
61
+ ```
62
+
63
+ 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)
64
+
65
+ ## License
66
+
67
+ Please adhere to the licensing terms as described [here](https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md).
68
+
69
+
70
+ ## Intended uses & limitations
71
+
72
+ #### How to use
73
+
74
+ ```python
75
+ # TODO: add an example code snippet for running this diffusion pipeline
76
+ ```
77
+
78
+ #### Limitations and bias
79
+
80
+ [TODO: provide examples of latent issues and potential remediations]
81
+
82
+ ## Training details
83
+
84
+ [TODO: describe the data used to train the model]
checkpoint-100/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a7e83a32c36d2d51bb24a47ba6da5ffccb70460978e190467dca375be6112e53
3
+ size 149742598
checkpoint-100/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4b5491c950ae8eb423c0853679442b42c2d56114bbd1194163a700b3da6587b9
3
+ size 74761976
checkpoint-100/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cb8e2f60abeba684527ee0d39fcff0866ced9bcdc8c1005d0de2ce4e3c3b7b77
3
+ size 14408
checkpoint-100/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c42a4ad503f4fd51276d22d0c53df941e97cd5157626cb32e2262ec43455b415
3
+ size 1000
checkpoint-1000/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:02db8617ca11b99c4eec818f1ec1012db21950a1d01f8efc851c3a76c830a72c
3
+ size 149742598
checkpoint-1000/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fd73bbc0cab13a7fd8af55478cfafa497f88b83652a9be4133f1782523c2bde8
3
+ size 74761976
checkpoint-1000/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:33ad9f4f024c35c3377d920d4c0fdf84592c6f41a19beb39f243fc6c76478d88
3
+ size 14408
checkpoint-1000/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6a06a1d190ebe3d2f59b87075958832ab264ff51bb09474ff935bfa56dcf4374
3
+ size 1000
checkpoint-200/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f641dd5ff04b21f78568dc7596179c8bddf2f251affaccb5ff85dd4a5d1f842e
3
+ size 149742598
checkpoint-200/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3798a174eae84a960bd61eed78404340602024220940dbf32ae98201d91dc055
3
+ size 74761976
checkpoint-200/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ccdf7ce8b1943a73407c6d6ae87e457728a35dc2b7e2dd70ef5893f7d613cd9f
3
+ size 14408
checkpoint-200/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fb530c9be58abd93a0766bbff15e054f787b4fdb16302785cd38c15b8e36bfa0
3
+ size 1000
checkpoint-300/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ef6a6ec2cbf51471509ebee364a71ac70163c76658b74fafb6659afcc206d02d
3
+ size 149742598
checkpoint-300/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:79aed2c65f2bf0506adb1b8d5fc49be8e5189b73aedb0e8b63ec12e3c45cac10
3
+ size 74761976
checkpoint-300/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ab5eded7379b27f909467f8276a4856b4693d6a4898cc1c3aa03ccdaeb0c2127
3
+ size 14408
checkpoint-300/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d63fd404b87358378c0145305f73904a2d622f9792355972fc0ffc0f741b7759
3
+ size 1000
checkpoint-400/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4a161e02577cf0dfcc111ba7201fd5b890bb81caa46ca75a3d7d8a7301a4fa05
3
+ size 149742598
checkpoint-400/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ca4beb32e4d4fb4d6c6523b60d4a8669b1410b6605939cb51d32faea4f9b0e96
3
+ size 74761976
checkpoint-400/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ce04bbfdc20186d1c3b4ced67c1c394ce8bd8ed6f2988c3dcf9ec7302e4c32ae
3
+ size 14408
checkpoint-400/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5cb40a6c989d2ea660e4489050feee9137349f913b444cd9f077240962992945
3
+ size 1000
checkpoint-500/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:49d813bb244fa37eef503dbb14e34d6e08dd8d79d0f657e5ea0c8aef1467eafb
3
+ size 149742598
checkpoint-500/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ca6d12b86b32fce5265312251ddbb84c7c64bb31b580a0a18ac407875b398bb1
3
+ size 74761976
checkpoint-500/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5eb33d77d1cc468c5411c770aae4beba01e65c01c19a22af86e0369396625393
3
+ size 14408
checkpoint-500/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:39877b7ed3b9e27c46689c000d0daa737b75ed18374838a197cc7c777779dbc9
3
+ size 1000
checkpoint-600/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:989f3017022cba75a83e83a9a0edc9b29b6966f6dddafa95f2a23a618cb2dab5
3
+ size 149742598
checkpoint-600/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:70b3f5ab1c1684675a1fedfd087dec765231194270d9aa8f5b1dff3308bb083b
3
+ size 74761976
checkpoint-600/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:27393a816ea1225c8d2048716cd568a3c4d5a94fc0b46c3be9084f91d4a55907
3
+ size 14408
checkpoint-600/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:534a40cf09532895280e1982e052a1dfcdc46940b86040cc761193ac22f3ea2f
3
+ size 1000
checkpoint-700/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a8623cdc474a75a09bdafc45189742e1fd71430cd388a100333524753a0851a6
3
+ size 149742598
checkpoint-700/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5b7e56cd19b76216c971a3cd074d16b6a73865623673ff797350bf4b89366862
3
+ size 74761976
checkpoint-700/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:596f673c9bddc3b432aa4636ac3fa5cf701e9f28376204e70fd20c382a1d436a
3
+ size 14408
checkpoint-700/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:acbc1b6a4bb810b4718d6904911eb6c9106f8aae929dac036231c9b5dd259da6
3
+ size 1000
checkpoint-800/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:39a492486c5ff763b63a3e0f7477796d0b0e818f959c7177975b631ff5faba5f
3
+ size 149742598
checkpoint-800/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ebd4808a45561300086740d7ccea8a5c6ee491b4ffc11f750f681765d5e9813a
3
+ size 74761976
checkpoint-800/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f7c87d5dbba01c3ce9df4f25a6889a34dddbda31ca4fad1bf5553866c95d6c94
3
+ size 14408
checkpoint-800/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:38152996db511e2e81a38903a5daef4614f6792f00628f86318af22229b5963a
3
+ size 1000
checkpoint-900/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0afb9d7326f191753c39b4dd392817a1f6ccb9866b3fd4c9adcf9575be621e7a
3
+ size 149742598
checkpoint-900/pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d4e27b7d2c3f03e149e8ded223462e2a9a12b6a7140fbfebd7b8c6c970d9b1e6
3
+ size 74761976
checkpoint-900/random_states_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b7911c14666e0884daefe7c2bedeab69dab75bd609da8faa0575b0672d1c08ec
3
+ size 14408
checkpoint-900/scheduler.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4eab3e253efb0df9d2e5a7a44a3d153e211bac80dac3491585eebf43c22894ef
3
+ size 1000
image_0.png ADDED
image_1.png ADDED
pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9cc5fed7005d96b2bcde389a87370d03594218442611264bb21e1cf131e45a77
3
+ size 149472944