File size: 1,061 Bytes
7df1c81
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
@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