Squaad AI commited on
saving checkpoint-750
Browse files
README.md
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
---
|
| 3 |
+
base_model: stabilityai/stable-diffusion-xl-base-1.0
|
| 4 |
+
instance_prompt: A TOK character
|
| 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 |
+
- squaadinc/kirito
|
| 14 |
+
---
|
| 15 |
+
|
| 16 |
+
# LoRA DreamBooth - squaadinc/kirito3
|
| 17 |
+
## MODEL IS CURRENTLY TRAINING ...
|
| 18 |
+
Last checkpoint saved: checkpoint-750
|
| 19 |
+
These are LoRA adaption weights for stabilityai/stable-diffusion-xl-base-1.0 trained on @fffiloni's SD-XL trainer.
|
| 20 |
+
The weights were trained on the concept prompt:
|
| 21 |
+
```
|
| 22 |
+
A TOK character
|
| 23 |
+
```
|
| 24 |
+
Use this keyword to trigger your custom model in your prompts.
|
| 25 |
+
LoRA for the text encoder was enabled: False.
|
| 26 |
+
Special VAE used for training: madebyollin/sdxl-vae-fp16-fix.
|
| 27 |
+
## Usage
|
| 28 |
+
Make sure to upgrade diffusers to >= 0.19.0:
|
| 29 |
+
```
|
| 30 |
+
pip install diffusers --upgrade
|
| 31 |
+
```
|
| 32 |
+
In addition make sure to install transformers, safetensors, accelerate as well as the invisible watermark:
|
| 33 |
+
```
|
| 34 |
+
pip install invisible_watermark transformers accelerate safetensors
|
| 35 |
+
```
|
| 36 |
+
To just use the base model, you can run:
|
| 37 |
+
```python
|
| 38 |
+
import torch
|
| 39 |
+
from diffusers import DiffusionPipeline, AutoencoderKL
|
| 40 |
+
device = "cuda" if torch.cuda.is_available() else "cpu"
|
| 41 |
+
vae = AutoencoderKL.from_pretrained('madebyollin/sdxl-vae-fp16-fix', torch_dtype=torch.float16)
|
| 42 |
+
pipe = DiffusionPipeline.from_pretrained(
|
| 43 |
+
"stabilityai/stable-diffusion-xl-base-1.0",
|
| 44 |
+
vae=vae, torch_dtype=torch.float16, variant="fp16",
|
| 45 |
+
use_safetensors=True
|
| 46 |
+
)
|
| 47 |
+
pipe.to(device)
|
| 48 |
+
# This is where you load your trained weights
|
| 49 |
+
specific_safetensors = "pytorch_lora_weights.safetensors"
|
| 50 |
+
lora_scale = 0.9
|
| 51 |
+
pipe.load_lora_weights(
|
| 52 |
+
'squaadinc/kirito3',
|
| 53 |
+
weight_name = specific_safetensors,
|
| 54 |
+
# use_auth_token = True
|
| 55 |
+
)
|
| 56 |
+
prompt = "A majestic A TOK character jumping from a big stone at night"
|
| 57 |
+
image = pipe(
|
| 58 |
+
prompt=prompt,
|
| 59 |
+
num_inference_steps=50,
|
| 60 |
+
cross_attention_kwargs={"scale": lora_scale}
|
| 61 |
+
).images[0]
|
| 62 |
+
```
|
checkpoint-750/optimizer.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:403fa90df02e4b2053929da4b7630508a0c720f7c59e9ca833e0dc167e1d28d0
|
| 3 |
+
size 14990599
|
checkpoint-750/pytorch_lora_weights.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:19fffc884eb1b1cc811c24b7d25353f82d3d8a55977fe6a4ddcb6d48b3f92f39
|
| 3 |
+
size 23401064
|
checkpoint-750/random_states_0.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c9f0e4a2a42053a9d0458e8e42b235cce0aee1659e029d8f7dfac039543fda4c
|
| 3 |
+
size 14599
|
checkpoint-750/scaler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:353f071a8d028751f6795b6568373c69120c80918dec3e3f3e2c2a824ed27644
|
| 3 |
+
size 557
|
checkpoint-750/scheduler.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1b8f02c4a2a5286cd5948d23e253e6fec1a28e31ba6d05a620e95d47ab3394b5
|
| 3 |
+
size 563
|