End of training
Browse files- README.md +72 -0
- checkpoint-1000/optimizer.bin +3 -0
- checkpoint-1000/pytorch_lora_weights.safetensors +3 -0
- checkpoint-1000/random_states_0.pkl +3 -0
- checkpoint-1000/scheduler.bin +3 -0
- checkpoint-1500/optimizer.bin +3 -0
- checkpoint-1500/pytorch_lora_weights.safetensors +3 -0
- checkpoint-1500/random_states_0.pkl +3 -0
- checkpoint-1500/scheduler.bin +3 -0
- checkpoint-2000/optimizer.bin +3 -0
- checkpoint-2000/pytorch_lora_weights.safetensors +3 -0
- checkpoint-2000/random_states_0.pkl +3 -0
- checkpoint-2000/scheduler.bin +3 -0
- checkpoint-2500/optimizer.bin +3 -0
- checkpoint-2500/pytorch_lora_weights.safetensors +3 -0
- checkpoint-2500/random_states_0.pkl +3 -0
- checkpoint-2500/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,72 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: models/Qwen-Image
|
| 3 |
+
library_name: diffusers
|
| 4 |
+
license: apache-2.0
|
| 5 |
+
widget: []
|
| 6 |
+
tags:
|
| 7 |
+
- text-to-image
|
| 8 |
+
- diffusers-training
|
| 9 |
+
- diffusers
|
| 10 |
+
- lora
|
| 11 |
+
- qwen-image
|
| 12 |
+
- qwen-image-diffusers
|
| 13 |
+
- template:sd-lora
|
| 14 |
+
---
|
| 15 |
+
|
| 16 |
+
<!-- This model card has been generated automatically according to the information the training script had access to. You
|
| 17 |
+
should probably proofread and complete it, then remove this comment. -->
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
# HiDream Image DreamBooth LoRA - viyer7/trained-qwen-lora_1500steps
|
| 21 |
+
|
| 22 |
+
<Gallery />
|
| 23 |
+
|
| 24 |
+
## Model description
|
| 25 |
+
|
| 26 |
+
These are viyer7/trained-qwen-lora_1500steps DreamBooth LoRA weights for models/Qwen-Image.
|
| 27 |
+
|
| 28 |
+
The weights were trained using [DreamBooth](https://dreambooth.github.io/) with the [Qwen Image diffusers trainer](https://github.com/huggingface/diffusers/blob/main/examples/dreambooth/README_qwen.md).
|
| 29 |
+
|
| 30 |
+
## Trigger words
|
| 31 |
+
|
| 32 |
+
You should use `None` to trigger the image generation.
|
| 33 |
+
|
| 34 |
+
## Download model
|
| 35 |
+
|
| 36 |
+
[Download the *.safetensors LoRA](viyer7/trained-qwen-lora_1500steps/tree/main) in the Files & versions tab.
|
| 37 |
+
|
| 38 |
+
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
|
| 39 |
+
|
| 40 |
+
```py
|
| 41 |
+
>>> import torch
|
| 42 |
+
>>> from diffusers import QwenImagePipeline
|
| 43 |
+
|
| 44 |
+
>>> pipe = QwenImagePipeline.from_pretrained(
|
| 45 |
+
... "Qwen/Qwen-Image",
|
| 46 |
+
... torch_dtype=torch.bfloat16,
|
| 47 |
+
... )
|
| 48 |
+
>>> pipe.enable_model_cpu_offload()
|
| 49 |
+
>>> pipe.load_lora_weights(f"viyer7/trained-qwen-lora_1500steps")
|
| 50 |
+
>>> image = pipe(f"None").images[0]
|
| 51 |
+
|
| 52 |
+
|
| 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 |
+
|
| 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:407922bcb7407ba77e44f90fe7441b34c9cce0dd941610f4a2021cf36efe4780
|
| 3 |
+
size 12542107
|
checkpoint-1000/pytorch_lora_weights.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dccfa4dcb61abf5b52181cc3fb79ea1b8661b987739b1ad2431a1aafe60fefcb
|
| 3 |
+
size 11859320
|
checkpoint-1000/random_states_0.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:03dfb6b60ec490ad1ee7d3ab78ff15f48d0162790c56174f4a64d1d8ad84c96d
|
| 3 |
+
size 16241
|
checkpoint-1000/scheduler.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3b747de1cb1f0bcfd96ac887f656146f2fe2ed038c31da3890af05789bb1314c
|
| 3 |
+
size 1199
|
checkpoint-1500/optimizer.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a8f079fbf529a811670273ab077aeb3611e7f8617a3bb348a4bdf1a0b6d16e56
|
| 3 |
+
size 12542107
|
checkpoint-1500/pytorch_lora_weights.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:672384dfd728fdcb92aecb25ac0dfe819ddc73d660e90c999994455b396acfb4
|
| 3 |
+
size 11859320
|
checkpoint-1500/random_states_0.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b64ac48cff3b4ee470b1c0c7dc14d57f6d4a5680d8430a70a22fd637e61767e3
|
| 3 |
+
size 16241
|
checkpoint-1500/scheduler.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4ca82fcd0b83f88e2817baeb057ecddb9144c3c0320b379bf1b67cab0b8df49a
|
| 3 |
+
size 1199
|
checkpoint-2000/optimizer.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6addcaada7bc82c2268d841fbd71de6733e49fa86c1e1104182c64f21f8c1d05
|
| 3 |
+
size 12542107
|
checkpoint-2000/pytorch_lora_weights.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:92e69ebc0a47bfa5b227fe0c2d7e0e09e3749d2e7e130a275dcf7a6b633e9d25
|
| 3 |
+
size 11859320
|
checkpoint-2000/random_states_0.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fe64b6f048f8a5a6f1dcc8b63d5888ce892cdd2915e6a48baabe6f06446d1832
|
| 3 |
+
size 16241
|
checkpoint-2000/scheduler.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5f61898c9de2e66d1511058a704797794fca13124219869519bb5b2f4c193e3a
|
| 3 |
+
size 1199
|
checkpoint-2500/optimizer.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:98e4fb12ba3117b0b9ff4da01d0ae9ede2673545ee70fdd10769f201adf8e78f
|
| 3 |
+
size 12542107
|
checkpoint-2500/pytorch_lora_weights.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dff7f23c9a375625376536f7788a18a460f9293bbe52e651bad4526ff6547c74
|
| 3 |
+
size 11859320
|
checkpoint-2500/random_states_0.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f45c5aa8f7201b878fcb847310b68c5caba1636c3c500262652ce4243e1e1b26
|
| 3 |
+
size 16241
|
checkpoint-2500/scheduler.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4bc26ba92c12369d6f3aeb19264c9337fb8940702509c6a6b1d912fab9879118
|
| 3 |
+
size 1199
|
checkpoint-500/optimizer.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f53ddd496b657c32041b74c493f52be618e9312aa2bad8bb940c73ee46ef6ff3
|
| 3 |
+
size 12542107
|
checkpoint-500/pytorch_lora_weights.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3c98b77d7aebce3cbe756f1ecba394d23e8bce62ad00331f0f62fac0180c90d1
|
| 3 |
+
size 11859320
|
checkpoint-500/random_states_0.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:25c95611230e8f90b5b4ab323cc4dc34ef0ac6aa984e08b370d763d405cc49b2
|
| 3 |
+
size 16241
|
checkpoint-500/scheduler.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c45cdc43a6d036b7490532c7f3bf711c2b11be9725dc7d9f75d0f281d911d5fb
|
| 3 |
+
size 1199
|
pytorch_lora_weights.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2e8c53630e05ea3d2feee6dc945441f62e93b0772cdab69103b0dafb72ad5c58
|
| 3 |
+
size 11859320
|