Commit
·
3680b8e
1
Parent(s):
9f9a579
feat: upload yami lora model
Browse files
yami_config/config_file.toml
CHANGED
@@ -23,6 +23,7 @@ lr_warmup_steps = 0
|
|
23 |
lr_scheduler_num_cycles = 2
|
24 |
|
25 |
[dataset_arguments]
|
|
|
26 |
debug_dataset = false
|
27 |
|
28 |
[training_arguments]
|
@@ -49,5 +50,8 @@ lowram = true
|
|
49 |
sample_every_n_epochs = 999999
|
50 |
sample_sampler = "ddim"
|
51 |
|
|
|
|
|
|
|
52 |
[saving_arguments]
|
53 |
save_model_as = "safetensors"
|
|
|
23 |
lr_scheduler_num_cycles = 2
|
24 |
|
25 |
[dataset_arguments]
|
26 |
+
cache_latents = true
|
27 |
debug_dataset = false
|
28 |
|
29 |
[training_arguments]
|
|
|
50 |
sample_every_n_epochs = 999999
|
51 |
sample_sampler = "ddim"
|
52 |
|
53 |
+
[dreambooth_arguments]
|
54 |
+
prior_loss_weight = 1.0
|
55 |
+
|
56 |
[saving_arguments]
|
57 |
save_model_as = "safetensors"
|
yami_config/dataset_config.toml
CHANGED
@@ -1,15 +1,28 @@
|
|
1 |
[[datasets]]
|
2 |
resolution = 768
|
|
|
|
|
3 |
caption_dropout_rate = 0
|
4 |
caption_tag_dropout_rate = 0
|
5 |
caption_dropout_every_n_epochs = 0
|
|
|
6 |
color_aug = false
|
7 |
[[datasets.subsets]]
|
8 |
image_dir = "/content/LoRA/train_data"
|
|
|
9 |
num_repeats = 3
|
10 |
-
|
|
|
|
|
|
|
|
|
|
|
11 |
|
12 |
|
13 |
[general]
|
|
|
|
|
14 |
shuffle_caption = true
|
15 |
keep_tokens = 1
|
|
|
|
|
|
1 |
[[datasets]]
|
2 |
resolution = 768
|
3 |
+
min_bucket_reso = 320
|
4 |
+
max_bucket_reso = 1280
|
5 |
caption_dropout_rate = 0
|
6 |
caption_tag_dropout_rate = 0
|
7 |
caption_dropout_every_n_epochs = 0
|
8 |
+
flip_aug = false
|
9 |
color_aug = false
|
10 |
[[datasets.subsets]]
|
11 |
image_dir = "/content/LoRA/train_data"
|
12 |
+
class_tokens = "yami "
|
13 |
num_repeats = 3
|
14 |
+
|
15 |
+
[[datasets.subsets]]
|
16 |
+
is_reg = true
|
17 |
+
image_dir = "/content/LoRA/reg_data"
|
18 |
+
class_tokens = ""
|
19 |
+
num_repeats = 1
|
20 |
|
21 |
|
22 |
[general]
|
23 |
+
enable_bucket = true
|
24 |
+
caption_extension = ".txt"
|
25 |
shuffle_caption = true
|
26 |
keep_tokens = 1
|
27 |
+
bucket_reso_steps = 64
|
28 |
+
bucket_no_upscale = false
|