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

View File

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