From b77da103c4797aa62a7b51a42d88069e33f5c092 Mon Sep 17 00:00:00 2001 From: bmaltais Date: Sat, 26 Oct 2024 19:47:25 -0400 Subject: [PATCH] Fix typo --- kohya_gui/textual_inversion_gui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kohya_gui/textual_inversion_gui.py b/kohya_gui/textual_inversion_gui.py index 5ff1699f..4e1ec429 100644 --- a/kohya_gui/textual_inversion_gui.py +++ b/kohya_gui/textual_inversion_gui.py @@ -872,7 +872,7 @@ def train_model( "vae_batch_size": vae_batch_size if vae_batch_size != 0 else None, "wandb_api_key": wandb_api_key, "wandb_run_name": wandb_run_name if wandb_run_name != "" else output_name, - "weigts": weights, + "weights": weights, "use_object_template": True if template == "object template" else None, "use_style_template": True if template == "style template" else None, "xformers": True if xformers == "xformers" else None,