mushroomfleet commited on
Commit
c7f471f
1 Parent(s): b147061

End of training

Browse files
.gitattributes CHANGED
@@ -33,3 +33,7 @@ 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
+ image_0.png filter=lfs diff=lfs merge=lfs -text
37
+ image_1.png filter=lfs diff=lfs merge=lfs -text
38
+ image_2.png filter=lfs diff=lfs merge=lfs -text
39
+ image_3.png filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,95 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - stable-diffusion-xl
4
+ - stable-diffusion-xl-diffusers
5
+ - text-to-image
6
+ - diffusers
7
+ - lora
8
+ - template:sd-lora
9
+ widget:
10
+
11
+ - text: 'a <s0><s1> photo of a puppy, in the style of <s0><s1>'
12
+ output:
13
+ url:
14
+ "image_0.png"
15
+
16
+ - text: 'a <s0><s1> photo of a puppy, in the style of <s0><s1>'
17
+ output:
18
+ url:
19
+ "image_1.png"
20
+
21
+ - text: 'a <s0><s1> photo of a puppy, in the style of <s0><s1>'
22
+ output:
23
+ url:
24
+ "image_2.png"
25
+
26
+ - text: 'a <s0><s1> photo of a puppy, in the style of <s0><s1>'
27
+ output:
28
+ url:
29
+ "image_3.png"
30
+
31
+ base_model: stabilityai/stable-diffusion-xl-base-1.0
32
+ instance_prompt: a photo of <s0><s1> dog
33
+ license: openrail++
34
+ ---
35
+
36
+ # SDXL LoRA DreamBooth - mushroomfleet/XLcorgydog_test2LoRA
37
+
38
+ <Gallery />
39
+
40
+ ## Model description
41
+
42
+ ### These are mushroomfleet/XLcorgydog_test2LoRA LoRA adaption weights for stabilityai/stable-diffusion-xl-base-1.0.
43
+
44
+ ## Download model
45
+
46
+ ### Use it with UIs such as AUTOMATIC1111, Comfy UI, SD.Next, Invoke
47
+
48
+ - **LoRA**: download **[`XLcorgydog_test2LoRA.safetensors` here 💾](/mushroomfleet/XLcorgydog_test2LoRA/blob/main/XLcorgydog_test2LoRA.safetensors)**.
49
+ - Place it on your `models/Lora` folder.
50
+ - On AUTOMATIC1111, load the LoRA by adding `<lora:XLcorgydog_test2LoRA:1>` to your prompt. On ComfyUI just [load it as a regular LoRA](https://comfyanonymous.github.io/ComfyUI_examples/lora/).
51
+ - *Embeddings*: download **[`XLcorgydog_test2LoRA_emb.safetensors` here 💾](/mushroomfleet/XLcorgydog_test2LoRA/blob/main/XLcorgydog_test2LoRA_emb.safetensors)**.
52
+ - Place it on it on your `embeddings` folder
53
+ - Use it by adding `XLcorgydog_test2LoRA_emb` to your prompt. For example, `a photo of XLcorgydog_test2LoRA_emb dog`
54
+ (you need both the LoRA and the embeddings as they were trained together for this LoRA)
55
+
56
+
57
+ ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
58
+
59
+ ```py
60
+ from diffusers import AutoPipelineForText2Image
61
+ import torch
62
+ from huggingface_hub import hf_hub_download
63
+ from safetensors.torch import load_file
64
+
65
+ pipeline = AutoPipelineForText2Image.from_pretrained('stabilityai/stable-diffusion-xl-base-1.0', torch_dtype=torch.float16).to('cuda')
66
+ pipeline.load_lora_weights('mushroomfleet/XLcorgydog_test2LoRA', weight_name='pytorch_lora_weights.safetensors')
67
+ embedding_path = hf_hub_download(repo_id='mushroomfleet/XLcorgydog_test2LoRA', filename='XLcorgydog_test2LoRA_emb.safetensors', repo_type="model")
68
+ state_dict = load_file(embedding_path)
69
+ pipeline.load_textual_inversion(state_dict["clip_l"], token=["<s0>", "<s1>"], text_encoder=pipeline.text_encoder, tokenizer=pipeline.tokenizer)
70
+ pipeline.load_textual_inversion(state_dict["clip_g"], token=["<s0>", "<s1>"], text_encoder=pipeline.text_encoder_2, tokenizer=pipeline.tokenizer_2)
71
+
72
+ image = pipeline('a <s0><s1> photo of a puppy, in the style of <s0><s1>').images[0]
73
+ ```
74
+
75
+ For more details, including weighting, merging and fusing LoRAs, check the [documentation on loading LoRAs in diffusers](https://huggingface.co/docs/diffusers/main/en/using-diffusers/loading_adapters)
76
+
77
+ ## Trigger words
78
+
79
+ To trigger image generation of trained concept(or concepts) replace each concept identifier in you prompt with the new inserted tokens:
80
+
81
+ to trigger concept `TOK` → use `<s0><s1>` in your prompt
82
+
83
+
84
+
85
+ ## Details
86
+ All [Files & versions](/mushroomfleet/XLcorgydog_test2LoRA/tree/main).
87
+
88
+ The weights were trained using [🧨 diffusers Advanced Dreambooth Training Script](https://github.com/huggingface/diffusers/blob/main/examples/advanced_diffusion_training/train_dreambooth_lora_sdxl_advanced.py).
89
+
90
+ LoRA for the text encoder was enabled. False.
91
+
92
+ Pivotal tuning was enabled: True.
93
+
94
+ Special VAE used for training: madebyollin/sdxl-vae-fp16-fix.
95
+
XLcorgydog_test2LoRA.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:34a609d48e4b22e13979465f4edbd27d7a798a359920b09369a078c2d80cb09d
3
+ size 46698072
XLcorgydog_test2LoRA_emb.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5856763d91181665f5789e5006b5c5a110da4cae955d919aafb3b9cafc74de59
3
+ size 16536
image_0.png ADDED

Git LFS Details

  • SHA256: 43915b2c819966183097c5b187006595834729db7e8745e0751abe8f4b8d1869
  • Pointer size: 132 Bytes
  • Size of remote file: 1.52 MB
image_1.png ADDED

Git LFS Details

  • SHA256: 90b14a7a90cb4e34f0a71635434d764ae83edda556c052b5e3046b89d3b10b41
  • Pointer size: 132 Bytes
  • Size of remote file: 1.64 MB
image_2.png ADDED

Git LFS Details

  • SHA256: f9209eceb2972b64cde2a59cb060d7b457a6669e1cdc44e81a3429a3f606c065
  • Pointer size: 132 Bytes
  • Size of remote file: 1.58 MB
image_3.png ADDED

Git LFS Details

  • SHA256: 813966f272a165c7ac7ee6981881af5d34f1b6db0024d709039c86231597c39c
  • Pointer size: 132 Bytes
  • Size of remote file: 1.61 MB
logs/dreambooth-lora-sd-xl/1707158328.424773/events.out.tfevents.1707158328.004c1bc917c6.3848.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4f8aeda47afd5b30870d15433deae722b71a04e5b137a43a71ad20c26a3b5725
3
+ size 3596
logs/dreambooth-lora-sd-xl/1707158328.4268608/hparams.yml ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ adam_beta1: 0.9
2
+ adam_beta2: 0.999
3
+ adam_epsilon: 1.0e-08
4
+ adam_weight_decay: 0.0001
5
+ adam_weight_decay_text_encoder: null
6
+ allow_tf32: false
7
+ cache_dir: null
8
+ cache_latents: false
9
+ caption_column: prompt
10
+ center_crop: false
11
+ checkpointing_steps: 2000
12
+ checkpoints_total_limit: null
13
+ class_data_dir: null
14
+ class_prompt: null
15
+ dataloader_num_workers: 0
16
+ dataset_config_name: null
17
+ dataset_name: dog
18
+ enable_xformers_memory_efficient_attention: false
19
+ gradient_accumulation_steps: 1
20
+ gradient_checkpointing: true
21
+ hub_model_id: null
22
+ hub_token: null
23
+ image_column: image
24
+ instance_data_dir: null
25
+ instance_prompt: a photo of <s0><s1> dog
26
+ learning_rate: 1.0
27
+ local_rank: -1
28
+ logging_dir: logs
29
+ lr_num_cycles: 1
30
+ lr_power: 1.0
31
+ lr_scheduler: constant
32
+ lr_warmup_steps: 0
33
+ max_grad_norm: 1.0
34
+ max_train_steps: 1000
35
+ mixed_precision: bf16
36
+ noise_offset: 0
37
+ num_class_images: 100
38
+ num_new_tokens_per_abstraction: 2
39
+ num_train_epochs: 500
40
+ num_validation_images: 4
41
+ optimizer: prodigy
42
+ output_dir: XLcorgydog_test2LoRA
43
+ pretrained_model_name_or_path: stabilityai/stable-diffusion-xl-base-1.0
44
+ pretrained_vae_model_name_or_path: madebyollin/sdxl-vae-fp16-fix
45
+ prior_generation_precision: null
46
+ prior_loss_weight: 1.0
47
+ prodigy_beta3: null
48
+ prodigy_decouple: true
49
+ prodigy_safeguard_warmup: true
50
+ prodigy_use_bias_correction: true
51
+ push_to_hub: true
52
+ random_flip: false
53
+ rank: 8
54
+ repeats: 1
55
+ report_to: tensorboard
56
+ resolution: 1024
57
+ resume_from_checkpoint: null
58
+ revision: null
59
+ sample_batch_size: 4
60
+ scale_lr: false
61
+ seed: 0
62
+ snr_gamma: 5.0
63
+ text_encoder_lr: 1.0
64
+ token_abstraction: TOK
65
+ train_batch_size: 3
66
+ train_text_encoder: false
67
+ train_text_encoder_frac: 1.0
68
+ train_text_encoder_ti: true
69
+ train_text_encoder_ti_frac: 0.5
70
+ use_8bit_adam: false
71
+ validation_epochs: 50
72
+ validation_prompt: a <s0><s1> photo of a puppy, in the style of <s0><s1>
73
+ variant: null
74
+ with_prior_preservation: false
logs/dreambooth-lora-sd-xl/events.out.tfevents.1707158328.004c1bc917c6.3848.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:54e744762cf787987b8e05b0280685772844d4869c1671e733b9d95c3270bc77
3
+ size 61750330
pytorch_lora_weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6c2b6b121a8448d40c1e0b46a6e17a7cb7bc70946610af6e45dd1960aa0b9952
3
+ size 46615272