初始化项目,由ModelHub XC社区提供模型

Model: LoganResearch/ARC-Base-8B-Condensed
Source: Original Platform
This commit is contained in:
ModelHub XC
2026-06-24 10:52:18 +08:00
commit 5bc82cc56a
191 changed files with 68858 additions and 0 deletions

44
start.bat Normal file
View 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