Remove Training references from invoke script

This commit is contained in:
Kent Keirsey 2024-02-29 22:16:44 -05:00
parent 26d4d93e64
commit c953051eae
2 changed files with 5 additions and 7 deletions

View File

@ -9,7 +9,7 @@ set INVOKEAI_ROOT=.
:start
echo Desired action:
echo 1. Generate images with the browser-based interface
echo 2. Run textual inversion training
echo 2. Invoke Model Training
echo 3. Merge models (diffusers type only)
echo 4. Download and install models
echo 5. Change InvokeAI startup options
@ -25,8 +25,7 @@ IF /I "%choice%" == "1" (
echo Starting the InvokeAI browser-based UI..
python .venv\Scripts\invokeai-web.exe %*
) ELSE IF /I "%choice%" == "2" (
echo Starting textual inversion training..
python .venv\Scripts\invokeai-ti.exe --gui
echo To use Invoke Training for LoRA, TI, and more - Visit https://github.com/invoke-ai/invoke-training
) ELSE IF /I "%choice%" == "3" (
echo Starting model merging script..
python .venv\Scripts\invokeai-merge.exe --gui

View File

@ -59,8 +59,7 @@ do_choice() {
;;
2)
clear
printf "Textual inversion training\n"
invokeai-ti --gui $PARAMS
printf "To use Invoke Training for LoRA, TI, and more - Visit https://github.com/invoke-ai/invoke-training\n"
;;
3)
clear
@ -118,7 +117,7 @@ do_choice() {
do_dialog() {
options=(
1 "Generate images with a browser-based interface"
2 "Textual inversion training"
2 "Run Invoke Training"
3 "Merge models (diffusers type only)"
4 "Download and install models"
5 "Change InvokeAI startup options"
@ -151,7 +150,7 @@ do_line_input() {
printf " ** For a more attractive experience, please install the 'dialog' utility using your package manager. **\n\n"
printf "What would you like to do?\n"
printf "1: Generate images using the browser-based interface\n"
printf "2: Run textual inversion training\n"
printf "2: Run Invoke Training\n"
printf "3: Merge models (diffusers type only)\n"
printf "4: Download and install models\n"
printf "5: Change InvokeAI startup options\n"