Files
ARC-Base-8B-Condensed/start.bat

45 lines
1.0 KiB
Batchfile
Raw Permalink Normal View History

@echo off
REM ARC Engine v2.4 Quick Start (Windows)
REM ======================================
echo.
echo 🤖 ARC Engine v2.4 - Quick Start
echo =================================
echo.
REM Check if Python is available
python --version >nul 2>&1
if errorlevel 1 (
echo ❌ Python not found. Please install Python 3.10+
pause
exit /b 1
)
echo Checking dependencies...
echo.
REM Check if torch is installed
python -c "import torch" >nul 2>&1
if errorlevel 1 (
echo ⚠️ PyTorch not found. Installing core dependencies...
pip install torch transformers accelerate peft bitsandbytes datasets trl safetensors tqdm matplotlib requests
)
REM Check GPU
echo.
echo Checking GPU...
python -c "import torch; print(f'CUDA available: {torch.cuda.is_available()}')"
echo.
echo =================================
echo Starting ARC Engine v2.4...
echo =================================
echo.
echo First run will download the model (~16GB)
echo Type 'help' for commands, 'help ^<topic^>' for specific help
echo.
python arc_engine_v24_full.py
pause