From 224a7eb3f860cbabc39c2f11b395391fbef92141 Mon Sep 17 00:00:00 2001 From: dreddi Date: Fri, 30 Sep 2022 19:29:26 +1000 Subject: [PATCH] Fix: typo in dreambooth_runpod_joepenna.ipynb `--class_word class_word` was being used to lauch training instead of the correctly templated `--class_word {class_word}` --- dreambooth_runpod_joepenna.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dreambooth_runpod_joepenna.ipynb b/dreambooth_runpod_joepenna.ipynb index 2c5f7d8..1674d5f 100644 --- a/dreambooth_runpod_joepenna.ipynb +++ b/dreambooth_runpod_joepenna.ipynb @@ -394,7 +394,7 @@ " --gpus 0, \\\n", " --data_root \"/workspace/Dreambooth-Stable-Diffusion/training_samples\" \\\n", " --max_training_steps {max_training_steps} \\\n", - " --class_word class_word \\\n", + " --class_word {class_word} \\\n", " --no-test" ] },