Views
No views yet
C (Apache-2.0)1# 1) Create env
2python -m venv venv && source .venv/bin/activate # Windows: ./venv/Scripts/activate
3
4# 2) Install deps
5pip install -r requirements.txt
6
7# 3) Run
8python main.py --helpTip: If you have a GPU + CUDA, PyTorch will auto-use it. If not, everything runs on CPU (slower but works).