From f7ecfa0366771dceb8e930559b515e7bed973fc0 Mon Sep 17 00:00:00 2001 From: DeoJin Date: Tue, 17 Mar 2026 12:56:14 +0100 Subject: [PATCH] docs: show model-tag in chat CLI examples --- runs/runcpu.sh | 3 ++- runs/speedrun.sh | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/runs/runcpu.sh b/runs/runcpu.sh index 853fa1f..94e6f93 100755 --- a/runs/runcpu.sh +++ b/runs/runcpu.sh @@ -59,7 +59,8 @@ python -m scripts.chat_sft \ # The model should be able to say that it is Paris. # It might even know that the color of the sky is blue. # Sometimes the model likes it if you first say Hi before you ask it questions. -# python -m scripts.chat_cli -p "What is the capital of France?" +# export MODEL_TAG="d6" +# python -m scripts.chat_cli -p "What is the capital of France?" --model-tag $MODEL_TAG # Chat with the model over a pretty WebUI ChatGPT style # python -m scripts.chat_web diff --git a/runs/speedrun.sh b/runs/speedrun.sh index 48fcc68..6f41695 100644 --- a/runs/speedrun.sh +++ b/runs/speedrun.sh @@ -86,7 +86,8 @@ torchrun --standalone --nproc_per_node=8 -m scripts.chat_sft -- --device-batch-s torchrun --standalone --nproc_per_node=8 -m scripts.chat_eval -- -i sft # chat with the model over CLI! Leave out the -p to chat interactively -# python -m scripts.chat_cli -p "Why is the sky blue?" +# export MODEL_TAG="d24" +# python -m scripts.chat_cli -p "Why is the sky blue?" --model-tag $MODEL_TAG # even better, chat with your model over a pretty WebUI ChatGPT style # python -m scripts.chat_web