Switch production checkpoint reference to epoch 3

Production was switched from ep2 to ep3 based on separability and
length-calibration evidence (JOINT_TRAINING_CLOSEOUT_REPORT.md). Updates
start-model.sh's default and the README's setup instructions. The Drive
link itself still points to the ep2 file pending re-upload -- flagged
inline in the README.
This commit is contained in:
2026-08-30 17:28:23 -05:00
parent 57ab1fa4d5
commit 2accd43cfe
2 changed files with 7 additions and 5 deletions

View File

@@ -3,17 +3,17 @@
#
# Requires:
# - llama.cpp built with CUDA support (see README.md)
# - the Qwen3-30B-A3B-VoxDay-Nuttall-SFT-ep2-Q8_0.gguf file (from the team
# - the Qwen3-30B-A3B-VoxDay-Nuttall-SFT-ep3-Q8_0.gguf file (from the team
# Google Drive)
#
# Configure by setting environment variables before running, e.g.:
# MODEL_PATH=/data/models/Qwen3-30B-A3B-VoxDay-Nuttall-SFT-ep2-Q8_0.gguf \
# MODEL_PATH=/data/models/Qwen3-30B-A3B-VoxDay-Nuttall-SFT-ep3-Q8_0.gguf \
# LLAMA_SERVER=/opt/llama.cpp/build/bin/llama-server \
# ./start-model.sh
# or just edit the defaults below.
set -e
MODEL_PATH="${MODEL_PATH:-$HOME/models/Qwen3-30B-A3B-VoxDay-Nuttall-SFT-ep2-Q8_0.gguf}"
MODEL_PATH="${MODEL_PATH:-$HOME/models/Qwen3-30B-A3B-VoxDay-Nuttall-SFT-ep3-Q8_0.gguf}"
LLAMA_SERVER="${LLAMA_SERVER:-$HOME/llama.cpp/build/bin/llama-server}"
HOST="${HOST:-0.0.0.0}"
PORT="${PORT:-8200}"