saving checkpoint-100
Browse files- README.md +59 -0
- Screenshot 2023-09-24 at 11.26.21 AM.png +0 -0
- Screenshot 2023-09-24 at 11.26.44 AM.png +0 -0
- Screenshot 2023-09-24 at 11.27.00 AM.png +0 -0
- Screenshot 2023-09-24 at 11.27.46 AM.png +0 -0
- Screenshot 2023-09-24 at 11.27.59 AM.png +0 -0
- Screenshot 2023-09-24 at 11.28.16 AM.png +0 -0
- Screenshot 2023-09-24 at 11.28.36 AM.png +0 -0
- Screenshot 2023-09-24 at 3.08.50 PM.png +0 -0
- Screenshot 2023-09-24 at 4.07.18 PM.png +0 -0
- Screenshot 2023-09-25 at 10.04.11 AM.png +0 -0
- Screenshot 2023-09-25 at 10.15.08 AM.png +0 -0
- Screenshot 2023-09-25 at 10.20.15 AM.png +0 -0
- Screenshot 2023-09-25 at 10.55.49 AM.png +0 -0
- Screenshot 2023-09-25 at 2.29.22 PM.png +0 -0
- Screenshot 2023-09-25 at 6.57.54 AM.png +0 -0
- Screenshot 2023-09-25 at 7.46.51 AM.png +0 -0
- Screenshot 2023-09-25 at 9.25.37 AM.png +0 -0
- Screenshot 2023-09-26 at 6.55.01 PM.png +0 -0
- Screenshot 2023-09-27 at 11.55.28 AM.png +0 -0
- Screenshot 2023-09-27 at 7.33.07 AM.png +0 -0
- Screenshot 2023-09-27 at 8.35.28 AM.png +0 -0
- Screenshot 2023-09-28 at 6.25.13 AM.png +0 -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
README.md
ADDED
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
---
|
3 |
+
base_model: stabilityai/stable-diffusion-xl-base-1.0
|
4 |
+
instance_prompt: bbhf2
|
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 |
+
- herve76/bbhf2
|
14 |
+
---
|
15 |
+
|
16 |
+
# LoRA DreamBooth - herve76/bbhf2
|
17 |
+
|
18 |
+
## MODEL IS CURRENTLY TRAINING ...
|
19 |
+
Last checkpoint saved: checkpoint-100
|
20 |
+
|
21 |
+
These are LoRA adaption weights for stabilityai/stable-diffusion-xl-base-1.0.
|
22 |
+
|
23 |
+
The weights were trained on the concept prompt:
|
24 |
+
```
|
25 |
+
bbhf2
|
26 |
+
```
|
27 |
+
Use this keyword to trigger your custom model in your prompts.
|
28 |
+
|
29 |
+
LoRA for the text encoder was enabled: False.
|
30 |
+
|
31 |
+
Special VAE used for training: madebyollin/sdxl-vae-fp16-fix.
|
32 |
+
|
33 |
+
## Usage
|
34 |
+
|
35 |
+
Make sure to upgrade diffusers to >= 0.19.0:
|
36 |
+
```
|
37 |
+
pip install diffusers --upgrade
|
38 |
+
```
|
39 |
+
In addition make sure to install transformers, safetensors, accelerate as well as the invisible watermark:
|
40 |
+
```
|
41 |
+
pip install invisible_watermark transformers accelerate safetensors
|
42 |
+
```
|
43 |
+
To just use the base model, you can run:
|
44 |
+
```python
|
45 |
+
import torch
|
46 |
+
from diffusers import DiffusionPipeline, AutoencoderKL
|
47 |
+
vae = AutoencoderKL.from_pretrained('madebyollin/sdxl-vae-fp16-fix', torch_dtype=torch.float16)
|
48 |
+
pipe = DiffusionPipeline.from_pretrained(
|
49 |
+
"stabilityai/stable-diffusion-xl-base-1.0",
|
50 |
+
vae=vae, torch_dtype=torch.float16, variant="fp16",
|
51 |
+
use_safetensors=True
|
52 |
+
)
|
53 |
+
pipe.to("cuda")
|
54 |
+
# This is where you load your trained weights
|
55 |
+
pipe.load_lora_weights('herve76/bbhf2')
|
56 |
+
|
57 |
+
prompt = "A majestic bbhf2 jumping from a big stone at night"
|
58 |
+
image = pipe(prompt=prompt, num_inference_steps=50).images[0]
|
59 |
+
```
|
Screenshot 2023-09-24 at 11.26.21 AM.png
ADDED
Screenshot 2023-09-24 at 11.26.44 AM.png
ADDED
Screenshot 2023-09-24 at 11.27.00 AM.png
ADDED
Screenshot 2023-09-24 at 11.27.46 AM.png
ADDED
Screenshot 2023-09-24 at 11.27.59 AM.png
ADDED
Screenshot 2023-09-24 at 11.28.16 AM.png
ADDED
Screenshot 2023-09-24 at 11.28.36 AM.png
ADDED
Screenshot 2023-09-24 at 3.08.50 PM.png
ADDED
Screenshot 2023-09-24 at 4.07.18 PM.png
ADDED
Screenshot 2023-09-25 at 10.04.11 AM.png
ADDED
Screenshot 2023-09-25 at 10.15.08 AM.png
ADDED
Screenshot 2023-09-25 at 10.20.15 AM.png
ADDED
Screenshot 2023-09-25 at 10.55.49 AM.png
ADDED
Screenshot 2023-09-25 at 2.29.22 PM.png
ADDED
Screenshot 2023-09-25 at 6.57.54 AM.png
ADDED
Screenshot 2023-09-25 at 7.46.51 AM.png
ADDED
Screenshot 2023-09-25 at 9.25.37 AM.png
ADDED
Screenshot 2023-09-26 at 6.55.01 PM.png
ADDED
Screenshot 2023-09-27 at 11.55.28 AM.png
ADDED
Screenshot 2023-09-27 at 7.33.07 AM.png
ADDED
Screenshot 2023-09-27 at 8.35.28 AM.png
ADDED
Screenshot 2023-09-28 at 6.25.13 AM.png
ADDED
checkpoint-100/optimizer.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f747c7ae8f124fbc6711da536bdfb49e85b89d221695deff0bfe86c12bf65aec
|
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:c47fd37fdf282233a9da76319cfcd4be015a6cf85d05b27d2bd76351ff7b6750
|
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
|