End of training
Browse files- README.md +76 -0
- checkpoint-250/optimizer.bin +3 -0
- checkpoint-250/pytorch_lora_weights.safetensors +3 -0
- checkpoint-250/random_states_0.pkl +3 -0
- checkpoint-250/scheduler.bin +3 -0
- checkpoint-500/optimizer.bin +3 -0
- checkpoint-500/pytorch_lora_weights.safetensors +3 -0
- checkpoint-500/random_states_0.pkl +3 -0
- checkpoint-500/scheduler.bin +3 -0
- pytorch_lora_weights.safetensors +3 -0
README.md
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: black-forest-labs/FLUX.1-dev
|
| 3 |
+
library_name: diffusers
|
| 4 |
+
license: other
|
| 5 |
+
instance_prompt: a photo of sks dog
|
| 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 - multimodalart/trained-flux
|
| 22 |
+
|
| 23 |
+
<Gallery />
|
| 24 |
+
|
| 25 |
+
## Model description
|
| 26 |
+
|
| 27 |
+
These are multimodalart/trained-flux 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 |
+
Pivotal tuning was enabled: False.
|
| 34 |
+
|
| 35 |
+
## Trigger words
|
| 36 |
+
|
| 37 |
+
You should use a photo of sks dog to trigger the image generation.
|
| 38 |
+
|
| 39 |
+
## Download model
|
| 40 |
+
|
| 41 |
+
[Download the *.safetensors LoRA](multimodalart/trained-flux/tree/main) in the Files & versions tab.
|
| 42 |
+
|
| 43 |
+
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
|
| 44 |
+
|
| 45 |
+
```py
|
| 46 |
+
from diffusers import AutoPipelineForText2Image
|
| 47 |
+
import torch
|
| 48 |
+
|
| 49 |
+
pipeline = AutoPipelineForText2Image.from_pretrained("black-forest-labs/FLUX.1-dev", torch_dtype=torch.bfloat16).to('cuda')
|
| 50 |
+
pipeline.load_lora_weights('multimodalart/trained-flux', weight_name='pytorch_lora_weights.safetensors')
|
| 51 |
+
|
| 52 |
+
image = pipeline('a photo of sks dog').images[0]
|
| 53 |
+
```
|
| 54 |
+
|
| 55 |
+
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)
|
| 56 |
+
|
| 57 |
+
## License
|
| 58 |
+
|
| 59 |
+
Please adhere to the licensing terms as described [here](https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md).
|
| 60 |
+
|
| 61 |
+
|
| 62 |
+
## Intended uses & limitations
|
| 63 |
+
|
| 64 |
+
#### How to use
|
| 65 |
+
|
| 66 |
+
```python
|
| 67 |
+
# TODO: add an example code snippet for running this diffusion pipeline
|
| 68 |
+
```
|
| 69 |
+
|
| 70 |
+
#### Limitations and bias
|
| 71 |
+
|
| 72 |
+
[TODO: provide examples of latent issues and potential remediations]
|
| 73 |
+
|
| 74 |
+
## Training details
|
| 75 |
+
|
| 76 |
+
[TODO: describe the data used to train the model]
|
checkpoint-250/optimizer.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:62ed76380021fe91779528350adb746dca8132309c2e46c1d2980bcea620205d
|
| 3 |
+
size 90452994
|
checkpoint-250/pytorch_lora_weights.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6c4a00fb7897703fc1a7268c62beb5e33b56aacec895a953006a47da3a635572
|
| 3 |
+
size 22504080
|
checkpoint-250/random_states_0.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7cbbf73f11e1e85a38d7f5f24ab5dea321abd1e2ff930d73f9f9b6a01a7e7da2
|
| 3 |
+
size 14344
|
checkpoint-250/scheduler.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:838df2f4a5744e2044cdb10ac3e74827d27f84b296b04db54539c24164cf8d8c
|
| 3 |
+
size 1000
|
checkpoint-500/optimizer.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:974a9a77b974abed756c48b67c32a3e2b9345c096b6e40baf062088eb1eabd36
|
| 3 |
+
size 90453634
|
checkpoint-500/pytorch_lora_weights.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bde9a9b46de0436c31bcb1ee684dbf17c3308b330433c109cd438067d893c2f4
|
| 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:0053c2c8099659ff8ad332596c4b7d468ba1f4641de832da19ade26ab963323b
|
| 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
|
pytorch_lora_weights.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bde9a9b46de0436c31bcb1ee684dbf17c3308b330433c109cd438067d893c2f4
|
| 3 |
+
size 22504080
|