End of training
Browse files- README.md +63 -0
- checkpoint-100/optimizer.bin +3 -0
- checkpoint-100/pytorch_lora_weights.safetensors +3 -0
- checkpoint-100/random_states_0.pkl +3 -0
- checkpoint-100/scaler.pt +3 -0
- checkpoint-100/scheduler.bin +3 -0
- checkpoint-200/optimizer.bin +3 -0
- checkpoint-200/pytorch_lora_weights.safetensors +3 -0
- checkpoint-200/random_states_0.pkl +3 -0
- checkpoint-200/scaler.pt +3 -0
- checkpoint-200/scheduler.bin +3 -0
- checkpoint-300/optimizer.bin +3 -0
- checkpoint-300/pytorch_lora_weights.safetensors +3 -0
- checkpoint-300/random_states_0.pkl +3 -0
- checkpoint-300/scaler.pt +3 -0
- checkpoint-300/scheduler.bin +3 -0
- checkpoint-400/optimizer.bin +3 -0
- checkpoint-400/pytorch_lora_weights.safetensors +3 -0
- checkpoint-400/random_states_0.pkl +3 -0
- checkpoint-400/scaler.pt +3 -0
- checkpoint-400/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/scaler.pt +3 -0
- checkpoint-500/scheduler.bin +3 -0
- pytorch_lora_weights.safetensors +3 -0
README.md
ADDED
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
---
|
3 |
+
base_model: stabilityai/stable-diffusion-xl-base-1.0
|
4 |
+
instance_prompt: cozy_wall
|
5 |
+
tags:
|
6 |
+
- stable-diffusion-xl
|
7 |
+
- stable-diffusion-xl-diffusers
|
8 |
+
- text-to-image
|
9 |
+
- diffusers
|
10 |
+
- lora
|
11 |
+
inference: false
|
12 |
+
datasets:
|
13 |
+
- jtlowell/jay_cozy_1
|
14 |
+
---
|
15 |
+
|
16 |
+
# LoRA DreamBooth - jtlowell/cozy_wall
|
17 |
+
|
18 |
+
These are LoRA adaption weights for stabilityai/stable-diffusion-xl-base-1.0.
|
19 |
+
|
20 |
+
The weights were trained on the concept prompt:
|
21 |
+
|
22 |
+
`cozy_wall`
|
23 |
+
|
24 |
+
Use this keyword to trigger your custom model in your prompts.
|
25 |
+
|
26 |
+
LoRA for the text encoder was enabled: False.
|
27 |
+
Special VAE used for training: madebyollin/sdxl-vae-fp16-fix.
|
28 |
+
|
29 |
+
## Usage
|
30 |
+
|
31 |
+
Make sure to upgrade diffusers to >= 0.19.0:
|
32 |
+
```
|
33 |
+
pip install diffusers --upgrade
|
34 |
+
```
|
35 |
+
|
36 |
+
In addition make sure to install transformers, safetensors, accelerate as well as the invisible watermark:
|
37 |
+
```
|
38 |
+
pip install invisible_watermark transformers accelerate safetensors
|
39 |
+
```
|
40 |
+
|
41 |
+
To just use the base model, you can run:
|
42 |
+
|
43 |
+
```python
|
44 |
+
import torch
|
45 |
+
from diffusers import DiffusionPipeline, AutoencoderKL
|
46 |
+
|
47 |
+
vae = AutoencoderKL.from_pretrained('madebyollin/sdxl-vae-fp16-fix', torch_dtype=torch.float16)
|
48 |
+
|
49 |
+
pipe = DiffusionPipeline.from_pretrained(
|
50 |
+
"stabilityai/stable-diffusion-xl-base-1.0",
|
51 |
+
vae=vae, torch_dtype=torch.float16, variant="fp16",
|
52 |
+
use_safetensors=True
|
53 |
+
)
|
54 |
+
|
55 |
+
# This is where you load your trained weights
|
56 |
+
pipe.load_lora_weights('jtlowell/cozy_wall')
|
57 |
+
|
58 |
+
pipe.to("cuda")
|
59 |
+
|
60 |
+
prompt = "A majestic cozy_wall jumping from a big stone at night"
|
61 |
+
|
62 |
+
image = pipe(prompt=prompt, num_inference_steps=50).images[0]
|
63 |
+
```
|
checkpoint-100/optimizer.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:254da473e3c858a649a3f22bb6e548d0b5779e7b005649909fffbea672caee7a
|
3 |
+
size 14989511
|
checkpoint-100/pytorch_lora_weights.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0abae085b2f090892aa0101c70356c5d3722a54a5d86ab45bb2584d05e9e7106
|
3 |
+
size 23401064
|
checkpoint-100/random_states_0.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3ee37d79bcdde0837de1ac354dc0b5392a64e2d7438d3230a6f0a875aad1e4a8
|
3 |
+
size 14599
|
checkpoint-100/scaler.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cfa44e8523f62833816d29aa6c576eaa7783e3bbdb3e132e248b1d8aaee6132b
|
3 |
+
size 557
|
checkpoint-100/scheduler.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:906bdd391189fd16d3160fd1e198eb53687dae580f930cf3f64365609fd5f606
|
3 |
+
size 563
|
checkpoint-200/optimizer.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:818b905613578e573dd474de289cea2d8c1b96ce61af046b6154f2f312cfa024
|
3 |
+
size 14989511
|
checkpoint-200/pytorch_lora_weights.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:bc36f4c452436418a51ae7d47c05b083d43c8dd32f2cef236e70765c85b0b7de
|
3 |
+
size 23401064
|
checkpoint-200/random_states_0.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f703da32590c12a143e27782be5082e290ec5bfa3ad72b71b72ea450eb453015
|
3 |
+
size 14599
|
checkpoint-200/scaler.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4fccf0f9be1bb8f24861e4393745b3e09cc2687125a69e3757955fb0f0925ea5
|
3 |
+
size 557
|
checkpoint-200/scheduler.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d2565f1f317aadcb95557955732a7a05efb023cacf90620d89fcb0c7ac0f8e04
|
3 |
+
size 563
|
checkpoint-300/optimizer.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:44d98c81b0e1b4ea8dabfbdf7d1cc5598bb9991c2645f2487c33570fe09c4dc5
|
3 |
+
size 14990599
|
checkpoint-300/pytorch_lora_weights.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:88ffea978075a13d68822f5e7ec0fda3d1d16aa9856fdcbe6170347392772c36
|
3 |
+
size 23401064
|
checkpoint-300/random_states_0.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2255bfb21a88e04b07536d7ddd2382221da851d6c2096642a9c7fa4478c46cf6
|
3 |
+
size 14599
|
checkpoint-300/scaler.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:efafd90182e3d39d1b7c4a686f86e5913f5abc094dc3e2f827a6d479c6cef247
|
3 |
+
size 557
|
checkpoint-300/scheduler.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a84fb1fc02dc9adb8c44beeab2c46fbc41e10a07e99dad3fcd85350ca2bda9d5
|
3 |
+
size 563
|
checkpoint-400/optimizer.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:157c8a5b8ed47c827fb98671bda1e1d945e6e871eb3dc58ba5c74d3bbaf5723e
|
3 |
+
size 14990599
|
checkpoint-400/pytorch_lora_weights.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:552f1b1f951a8a565d4b8b6ffb5139e6c08f228c52de65fc65e137da15c0efc5
|
3 |
+
size 23401064
|
checkpoint-400/random_states_0.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ae2e0f94fc29c912791297a500647ff14815e75c36c6eefd02f5e9d6305a38cb
|
3 |
+
size 14599
|
checkpoint-400/scaler.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cc40a4be6a52cee4d7658df4041e660ffa02b0d8b5bd143bb8bb397f7b71b1a5
|
3 |
+
size 557
|
checkpoint-400/scheduler.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5e33b45756ec30d1126f6571b94c7435f6d9cb7b6d5e5e650c81523775e7216f
|
3 |
+
size 563
|
checkpoint-500/optimizer.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f8e9d7f7504ea4d7652f7b40badeeb2b9ff64e95df6927153462b05e76169d1d
|
3 |
+
size 14990599
|
checkpoint-500/pytorch_lora_weights.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:82bf292645de1149c0b264aa9cdbcceef689df7033715584d877ddf134e04262
|
3 |
+
size 23401064
|
checkpoint-500/random_states_0.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b85600fb2998174460a4b60bd41c4d7ee24b0fd20e2216d25f06a955a905956e
|
3 |
+
size 14599
|
checkpoint-500/scaler.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a3f196a54202bb4ba1220e8c59f42f9cda0702d68ea83147d814c2fb2f36b8f2
|
3 |
+
size 557
|
checkpoint-500/scheduler.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:62783ff6f0ae2c2ccc177b097e430c03940c5e70c38a191df273c5cf7ab1227c
|
3 |
+
size 563
|
pytorch_lora_weights.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:82bf292645de1149c0b264aa9cdbcceef689df7033715584d877ddf134e04262
|
3 |
+
size 23401064
|