初始化项目,由ModelHub XC社区提供模型
Model: LoganResearch/ARC-Base-8B-Condensed Source: Original Platform
This commit is contained in:
44
start.bat
Normal file
44
start.bat
Normal file
@@ -0,0 +1,44 @@
|
||||
@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
|
||||
Reference in New Issue
Block a user