| @echo off | |
| setlocal | |
| REM Always use the workspace venv interpreter to avoid PATH picking a different Python. | |
| set "PY_EXE=%~dp0.venv\Scripts\python.exe" | |
| if not exist "%PY_EXE%" ( | |
| echo [ERROR] venv not found at %PY_EXE% | |
| echo Create it with: python -m venv .venv ^&^& .venv\Scripts\pip install -r requirements.txt | |
| exit /b 1 | |
| ) | |
| "%PY_EXE%" app.py --checkpoint ./checkpoints/best_model.pt --embeddings ./embeddings/artist_embeddings.npz |