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}`
This commit is contained in:
dreddi 2022-09-30 19:29:26 +10:00 committed by GitHub
parent 9ca8d39b90
commit 224a7eb3f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -394,7 +394,7 @@
" --gpus 0, \\\n", " --gpus 0, \\\n",
" --data_root \"/workspace/Dreambooth-Stable-Diffusion/training_samples\" \\\n", " --data_root \"/workspace/Dreambooth-Stable-Diffusion/training_samples\" \\\n",
" --max_training_steps {max_training_steps} \\\n", " --max_training_steps {max_training_steps} \\\n",
" --class_word class_word \\\n", " --class_word {class_word} \\\n",
" --no-test" " --no-test"
] ]
}, },