End of training
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- README.md +54 -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/scaler.pt +3 -0
- checkpoint-1000/scheduler.bin +3 -0
- checkpoint-10000/optimizer.bin +3 -0
- checkpoint-10000/pytorch_lora_weights.safetensors +3 -0
- checkpoint-10000/random_states_0.pkl +3 -0
- checkpoint-10000/scaler.pt +3 -0
- checkpoint-10000/scheduler.bin +3 -0
- checkpoint-10500/optimizer.bin +3 -0
- checkpoint-10500/pytorch_lora_weights.safetensors +3 -0
- checkpoint-10500/random_states_0.pkl +3 -0
- checkpoint-10500/scaler.pt +3 -0
- checkpoint-10500/scheduler.bin +3 -0
- checkpoint-11000/optimizer.bin +3 -0
- checkpoint-11000/pytorch_lora_weights.safetensors +3 -0
- checkpoint-11000/random_states_0.pkl +3 -0
- checkpoint-11000/scaler.pt +3 -0
- checkpoint-11000/scheduler.bin +3 -0
- checkpoint-11500/optimizer.bin +3 -0
- checkpoint-11500/pytorch_lora_weights.safetensors +3 -0
- checkpoint-11500/random_states_0.pkl +3 -0
- checkpoint-11500/scaler.pt +3 -0
- checkpoint-11500/scheduler.bin +3 -0
- checkpoint-12000/optimizer.bin +3 -0
- checkpoint-12000/pytorch_lora_weights.safetensors +3 -0
- checkpoint-12000/random_states_0.pkl +3 -0
- checkpoint-12000/scaler.pt +3 -0
- checkpoint-12000/scheduler.bin +3 -0
- checkpoint-12500/optimizer.bin +3 -0
- checkpoint-12500/pytorch_lora_weights.safetensors +3 -0
- checkpoint-12500/random_states_0.pkl +3 -0
- checkpoint-12500/scaler.pt +3 -0
- checkpoint-12500/scheduler.bin +3 -0
- checkpoint-13000/optimizer.bin +3 -0
- checkpoint-13000/pytorch_lora_weights.safetensors +3 -0
- checkpoint-13000/random_states_0.pkl +3 -0
- checkpoint-13000/scaler.pt +3 -0
- checkpoint-13000/scheduler.bin +3 -0
- checkpoint-13500/optimizer.bin +3 -0
- checkpoint-13500/pytorch_lora_weights.safetensors +3 -0
- checkpoint-13500/random_states_0.pkl +3 -0
- checkpoint-13500/scaler.pt +3 -0
- checkpoint-13500/scheduler.bin +3 -0
- checkpoint-14000/optimizer.bin +3 -0
- checkpoint-14000/pytorch_lora_weights.safetensors +3 -0
- checkpoint-14000/random_states_0.pkl +3 -0
- checkpoint-14000/scaler.pt +3 -0
README.md
ADDED
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
---
|
3 |
+
license: mit
|
4 |
+
base_model: warp-ai/wuerstchen-prior
|
5 |
+
datasets:
|
6 |
+
- dongOi071102/meme-image-no-text
|
7 |
+
tags:
|
8 |
+
- wuerstchen
|
9 |
+
- text-to-image
|
10 |
+
- diffusers
|
11 |
+
- diffusers-training
|
12 |
+
- lora
|
13 |
+
inference: true
|
14 |
+
---
|
15 |
+
|
16 |
+
# LoRA Finetuning - dongOi071102/wuerstchen-prior-meme-image-no-text-lora-v1
|
17 |
+
|
18 |
+
This pipeline was finetuned from **warp-ai/wuerstchen-prior** on the **dongOi071102/meme-image-no-text** dataset. Below are some example images generated with the finetuned pipeline using the following prompts: ['a cartoon character sitting at a desk with a computer']:
|
19 |
+
|
20 |
+
![val_imgs_grid](./val_imgs_grid.png)
|
21 |
+
|
22 |
+
|
23 |
+
## Pipeline usage
|
24 |
+
|
25 |
+
You can use the pipeline like so:
|
26 |
+
|
27 |
+
```python
|
28 |
+
from diffusers import DiffusionPipeline
|
29 |
+
import torch
|
30 |
+
|
31 |
+
pipeline = AutoPipelineForText2Image.from_pretrained(
|
32 |
+
"warp-ai/wuerstchen", torch_dtype=float32
|
33 |
+
)
|
34 |
+
# load lora weights from folder:
|
35 |
+
pipeline.prior_pipe.load_lora_weights("dongOi071102/wuerstchen-prior-meme-image-no-text-lora-v1", torch_dtype=float32)
|
36 |
+
|
37 |
+
image = pipeline(prompt=prompt).images[0]
|
38 |
+
image.save("my_image.png")
|
39 |
+
```
|
40 |
+
|
41 |
+
## Training info
|
42 |
+
|
43 |
+
These are the key hyperparameters used during training:
|
44 |
+
|
45 |
+
* LoRA rank: 8
|
46 |
+
* Epochs: 100
|
47 |
+
* Learning rate: 0.0001
|
48 |
+
* Batch size: 8
|
49 |
+
* Gradient accumulation steps: 1
|
50 |
+
* Image resolution: 512
|
51 |
+
* Mixed-precision: fp16
|
52 |
+
|
53 |
+
|
54 |
+
More information on all the CLI arguments and the environment are available on your [`wandb` run page](https://wandb.ai/2111818-no/text2image-fine-tune/runs/w0wd57a9).
|
checkpoint-1000/optimizer.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b761cb317030cc2bd54862bd221feb64455665f1d3c09579ed60e4242ab0bdb5
|
3 |
+
size 25380474
|
checkpoint-1000/pytorch_lora_weights.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:80bb655b281e5457f64b7b498bd3abe062b826e5e59602c6a64f79c1d8ca4a41
|
3 |
+
size 12612168
|
checkpoint-1000/random_states_0.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:35a6fb614d011cbe74922f834057783a4bc7245127d7306e03c783cef3a53322
|
3 |
+
size 14408
|
checkpoint-1000/scaler.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:150f7b72d7cecf7213fa97b269a8cdf4ba345d57e8e98bb1b14144d9ead027e6
|
3 |
+
size 988
|
checkpoint-1000/scheduler.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:27ddc4c68dd2b663be4770d007107065adcf08c8561b4bf4c438d7068bcdd3b7
|
3 |
+
size 1000
|
checkpoint-10000/optimizer.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:55ee887d080f5d4c0d2e19431ead35ad4ff1eb7c2a34da20cd6858d15ab8890a
|
3 |
+
size 25380474
|
checkpoint-10000/pytorch_lora_weights.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:16b46844c7f8ca3d49539d9546ee92bb1d02b844b14e0c9577b3ced4881a142a
|
3 |
+
size 12612168
|
checkpoint-10000/random_states_0.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4bc7c9ababda16133f27f670b857d10effda8c7dbef5c7761da55397b84ce9ef
|
3 |
+
size 14408
|
checkpoint-10000/scaler.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:580512d34e1f66e8cd52309852f576d843642f59dec0b3726bc394f3822ecf37
|
3 |
+
size 988
|
checkpoint-10000/scheduler.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b319e9edad9770c58588afbd249dc00d375c41930aaff7aa05e7d6b8eccde9b4
|
3 |
+
size 1000
|
checkpoint-10500/optimizer.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0bb322aaf47c8b2275bf7d75c50b23235e976a5a13fe6715bedf7553f120bc44
|
3 |
+
size 25380474
|
checkpoint-10500/pytorch_lora_weights.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:86f8fd86cec006d3a6792644e0d279eac1bf9eef9741a50eac64df953da77a2c
|
3 |
+
size 12612168
|
checkpoint-10500/random_states_0.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:16de40b795a713e12519cd59e2e67c5cbc55ee3816b5f8ff1a97b6cbe0f1d6ed
|
3 |
+
size 14408
|
checkpoint-10500/scaler.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:02c0c5cd806b071e0a6d6f45726b8e56d8d1db453f2468654fa3513f5aa791c2
|
3 |
+
size 988
|
checkpoint-10500/scheduler.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3ca219f7d34845f9198ae84e76d82ba45b63041dfbf25cb171f15d9fac01a50f
|
3 |
+
size 1000
|
checkpoint-11000/optimizer.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:49b4a092e62d7f82a6291976012b235478f5534f2c7e4bf46fa74233cba5310b
|
3 |
+
size 25380474
|
checkpoint-11000/pytorch_lora_weights.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:92b2ecee38a563966eb88eb36c004529df502488c697b3033b14fe4032460dab
|
3 |
+
size 12612168
|
checkpoint-11000/random_states_0.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:61e6d64dc2e99391ccb23d317815b85d67c35bde8ef5b4583ef1c9a64f044649
|
3 |
+
size 14408
|
checkpoint-11000/scaler.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:718c7cb53766015a5676e29c990458ba81fca1074991e23c023be4d0fc56bacf
|
3 |
+
size 988
|
checkpoint-11000/scheduler.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c0360ed143a673dffa1d30a6ffe1f6b89b372b4760ba41752edd20ca6156179c
|
3 |
+
size 1000
|
checkpoint-11500/optimizer.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9b61a179acd7d709f794e1dc1cbb2d121d34bb1290df4829766a2426056c6d5d
|
3 |
+
size 25380474
|
checkpoint-11500/pytorch_lora_weights.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:609b268bccd3117c1b8b0c8d91966136781a0989b57fb8a42c3649e2e8d9160c
|
3 |
+
size 12612168
|
checkpoint-11500/random_states_0.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a12829e2cbe4bd8384a7d7f4806f8def2e4b9c97fa7c467af6db0ffe4d883ab1
|
3 |
+
size 14408
|
checkpoint-11500/scaler.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ea9ca0cc372fd570a75c661e0db157dd45d9010ee5470c770e1c763c87ac274c
|
3 |
+
size 988
|
checkpoint-11500/scheduler.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9322ef6069ff1ebb323966feeaef57055386780af9a019822caec18d78bb3af1
|
3 |
+
size 1000
|
checkpoint-12000/optimizer.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:57ec294373b24faf33f7dcc60fbb0713058c539d0f543a88cbdaa9e973a9fbb7
|
3 |
+
size 25380474
|
checkpoint-12000/pytorch_lora_weights.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:51c7d83c41583ae0f45ca41eef1fa66b65aba5b979ce2fdb2aa7db57aa239e3d
|
3 |
+
size 12612168
|
checkpoint-12000/random_states_0.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:373313ecc13af25253b60ea403d3919352d7ef3144b3e9b458581a02408be03d
|
3 |
+
size 14408
|
checkpoint-12000/scaler.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:63f0e17d8394a4a9e7918cdfe95ee3c2a0538d3fdd596e691db37b758089782a
|
3 |
+
size 988
|
checkpoint-12000/scheduler.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e0a79c8587ca93d237c5c7778cfaf2fceacf69212231380db6797517bd34e18f
|
3 |
+
size 1000
|
checkpoint-12500/optimizer.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:da0b6480e982292d9d5d3c2b003cd74e0f4574e7318b1c5019a0b7ebbf54551c
|
3 |
+
size 25380474
|
checkpoint-12500/pytorch_lora_weights.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:846260fcf9f4dca85f72dc3c3c82602569a2140c66bbc48be8501fc62469fa31
|
3 |
+
size 12612168
|
checkpoint-12500/random_states_0.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c5df2b83032a572dda3071f486b6b254330110b72809cfadbf81b32c40f54675
|
3 |
+
size 14408
|
checkpoint-12500/scaler.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:04d5a2ac1036eef47c967a616292b0dbdb45c81b13c70be1b367e7c82a76d6d8
|
3 |
+
size 988
|
checkpoint-12500/scheduler.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:65c43e9b727ecc94e34cc20a0da9c0b8e3892b9c9f3264d06e7571785a5cf71a
|
3 |
+
size 1000
|
checkpoint-13000/optimizer.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0f5149f3f383ea672edc5d6a1ad19a8cbde6317f5c2f10d6760a0618d8594428
|
3 |
+
size 25380474
|
checkpoint-13000/pytorch_lora_weights.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9723196bbf49d8cfdec15bae714dd507d6145de7030acc6e2a1f2448f5616459
|
3 |
+
size 12612168
|
checkpoint-13000/random_states_0.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3922646aa0c2e82b5223b1fc8e8e4b2856fd26dcc66ef0da93bbdbe8f0449207
|
3 |
+
size 14408
|
checkpoint-13000/scaler.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8465583b3d0a0288eb4af9bc3608c8480d51e1e182ae46822a03902cbb534b25
|
3 |
+
size 988
|
checkpoint-13000/scheduler.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e44b8fa61b65d284c11b98017058987339c7097fa992b82acf7cc577b4f194a7
|
3 |
+
size 1000
|
checkpoint-13500/optimizer.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:40ac186d9a7034160b94cd0751f40437c122c62a5c58a68ba22a52bf6782f1fb
|
3 |
+
size 25380474
|
checkpoint-13500/pytorch_lora_weights.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:eca67a89b4bba870ea149ec8d25681e34a7591df7d2addd0102b85d7e1032752
|
3 |
+
size 12612168
|
checkpoint-13500/random_states_0.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5ee29b67befbb6ed5c19d96a873292114d5b789d7f16e20d0c2d1345a96d8a2b
|
3 |
+
size 14408
|
checkpoint-13500/scaler.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b1dad5fe9d8b3e4a89e14315d73d680a551f504512fec5a6790559d7f81a2a3f
|
3 |
+
size 988
|
checkpoint-13500/scheduler.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d5f844735908f5529bb81962d8adbb2c805fc583ef35750f9c74eb7a3feb8bfd
|
3 |
+
size 1000
|
checkpoint-14000/optimizer.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:fd279b7e09ce086fe7858e17cd4633f99e37c2b34f92a4eb9a7a9eb4da5fc784
|
3 |
+
size 25380474
|
checkpoint-14000/pytorch_lora_weights.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:124fe5bab518760f0ebe49f52141f51e4c3dad144cb171113542195434a06360
|
3 |
+
size 12612168
|
checkpoint-14000/random_states_0.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:02488ef1437af183df617d92633ca8ee6788171aac0758becbb0eb3aa0ca30db
|
3 |
+
size 14408
|
checkpoint-14000/scaler.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6544b4757c19cde6eced5258d7375e84383a5dbe38c882a21f443517469b8bf3
|
3 |
+
size 988
|