setup env

This commit is contained in:
Dobromir Popov
2025-03-25 13:49:23 +02:00
parent 0042581275
commit e08fbf7f5f
3 changed files with 100 additions and 0 deletions

View File

@@ -5,6 +5,14 @@ echo ============================================================
call conda activate gpt-gpu
REM Install missing dependencies if needed
echo Checking for required packages...
python -c "import sklearn" 2>NUL
if %ERRORLEVEL% NEQ 0 (
echo Installing scikit-learn...
call conda install -y scikit-learn
)
REM Parse command-line arguments
set MODE=train
set MODEL_TYPE=cnn