victor HF staff commited on
Commit
7706e7f
1 Parent(s): 1e252d6

saving checkpoint-100

Browse files
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ Frame[[:space:]]6.jpg filter=lfs diff=lfs merge=lfs -text
Frame 10.jpg ADDED
Frame 11.jpg ADDED
Frame 12.jpg ADDED
Frame 13.jpg ADDED
Frame 14.jpg ADDED
Frame 15.jpg ADDED
Frame 16.jpg ADDED
Frame 5.jpg ADDED
Frame 6.jpg ADDED

Git LFS Details

  • SHA256: 57af08c96ece89a80f6738efa7903ff0f61fd34d2fce0b8448367e264de54dcf
  • Pointer size: 132 Bytes
  • Size of remote file: 1.23 MB
Frame 7.jpg ADDED
Frame 8.jpg ADDED
Frame 9.jpg ADDED
README.md ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+ base_model: stabilityai/stable-diffusion-xl-base-1.0
4
+ instance_prompt: cuphead
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
+ - victor/ch-art
14
+ ---
15
+
16
+ # LoRA DreamBooth - victor/ch-art
17
+ ## MODEL IS CURRENTLY TRAINING ...
18
+ Last checkpoint saved: checkpoint-100
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
+ cuphead
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
+ 'victor/ch-art',
53
+ weight_name = specific_safetensors,
54
+ # use_auth_token = True
55
+ )
56
+ prompt = "A majestic cuphead 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-100/optimizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:24d11e251f15e7bf4e125d1ff8832b653ec63643409f001ab846260290e8f437
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:d685dea1e2448debc908005cb8683ce77403d7e0191fde3d38650abff0d2b2c9
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:9c0498169c8e291c07cda39e21ac288f2d6bcb8612db479ca6e880773e233c4c
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