From 536971bade3dfd3af11321afa14ea636808fdc01 Mon Sep 17 00:00:00 2001 From: anzz1 Date: Wed, 29 Mar 2023 20:20:02 +0300 Subject: [PATCH] Apply suggestions from code review --- examples/chat-13B.bat | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/examples/chat-13B.bat b/examples/chat-13B.bat index 18050946d..c5c8ac6ef 100644 --- a/examples/chat-13B.bat +++ b/examples/chat-13B.bat @@ -1,8 +1,9 @@ +@setlocal disabledelayedexpansion enableextensions @echo off -cd .. +cd /d "%~dp0.." if not "%errorlevel%"=="0" ( - echo Unable to move up in the directory structure. + echo Unable to change directory. pause exit /b 1 ) @@ -11,7 +12,7 @@ if not defined MODEL set "MODEL=models\13B\ggml-model-q4_0.bin" if not defined USER_NAME set "USER_NAME=User" if not defined AI_NAME set "AI_NAME=ChatLLaMa" rem Adjust to the number of CPU cores you want to use. -if not defined N_THREAD set "N_THREAD=8" +rem if not defined N_THREAD set "N_THREAD=8" rem Number of tokens to predict (made it larger than default because we want a long interaction) if not defined N_PREDICTS set "N_PREDICTS=2048" if not defined GEN_OPTIONS set "GEN_OPTIONS=--ctx_size 2048 --temp 0.7 --top_k 40 --top_p 0.5 --repeat_last_n 256 --batch_size 1024 --repeat_penalty 1.17647" @@ -40,10 +41,16 @@ if not defined MAIN_SCRIPT_PATH ( rem Default context, feel free to edit it set "PROMPT_TEXT=Text transcript of a never ending dialog, where %USER_NAME% interacts with an AI assistant named %AI_NAME%. %AI_NAME% is helpful, kind, honest, friendly, good at writing and never fails to answer %USER_NAME%'s requests immediately and with details and precision. There are no annotations like (30 seconds passed...) or (to himself), just what %USER_NAME% and %AI_NAME% say aloud to each other. The dialog lasts for years, the entirety of it is shared below. It's 10000 pages long. The transcript only includes text, it does not include markup like HTML and Markdown." +rem Set a temporary variable if N_THREAD is set +if defined N_THREAD ( + set "_N_THREAD=--threads %N_THREAD%" +) else ( + set "_N_THREAD=" +) + rem Run the script -"%MAIN_SCRIPT_PATH%" %GEN_OPTIONS% ^ +echo "%MAIN_SCRIPT_PATH%" %GEN_OPTIONS% %_N_THREAD% ^ --model "%MODEL%" ^ - --threads %N_THREAD% ^ --n_predict %N_PREDICTS% ^ --color --interactive ^ --reverse-prompt "%USER_NAME%:" ^