diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-11-27 12:19:59 +0300 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-11-27 12:19:59 +0300 |
commit | b48b7999c86fd6d7f006f76adf5a484175782c37 (patch) | |
tree | 35d77b6d617ba8dc713aafc208f2b1050d6af78a /modules/shared.py | |
parent | b006382784a2f0887317bb60ea49d19b50a5dc7e (diff) | |
parent | 755df94b2aa62eabd96f900e0dd7ddc83c2f692c (diff) |
Merge remote-tracking branch 'flamelaw/master'
Diffstat (limited to 'modules/shared.py')
-rw-r--r-- | modules/shared.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/shared.py b/modules/shared.py index af975f54..5e8a9d27 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -345,8 +345,7 @@ options_templates.update(options_section(('system', "System"), { options_templates.update(options_section(('training', "Training"), {
"unload_models_when_training": OptionInfo(False, "Move VAE and CLIP to RAM when training if possible. Saves VRAM."),
- "shuffle_tags": OptionInfo(False, "Shuffleing tags by ',' when create texts."),
- "tag_drop_out": OptionInfo(0, "Dropout tags when create texts", gr.Slider, {"minimum": 0, "maximum": 1, "step": 0.1}),
+ "pin_memory": OptionInfo(False, "Turn on pin_memory for DataLoader. Makes training slightly faster but can increase memory usage."),
"save_optimizer_state": OptionInfo(False, "Saves Optimizer state as separate *.optim file. Training can be resumed with HN itself and matching optim file."),
"dataset_filename_word_regex": OptionInfo("", "Filename word regex"),
"dataset_filename_join_string": OptionInfo(" ", "Filename join string"),
|