-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequirements.txt
More file actions
66 lines (56 loc) · 1.57 KB
/
requirements.txt
File metadata and controls
66 lines (56 loc) · 1.57 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# roll_tracker curated runtime requirements (Python 3.12 target)
# Notes:
# - We intentionally pin NumPy 1.x to avoid Torch/NumPy ABI issues observed with NumPy 2.x.
# - IMPORTANT: install ultralytics + boxmot with --no-deps to prevent pip from pulling opencv-python
# (which tends to force NumPy 2.x on macOS arm64).
#
# Recommended clean rebuild (local or Docker):
# rm -rf .venv && python3.12 -m venv .venv
# source .venv/bin/activate
# python -m pip install -U pip setuptools wheel
# python -m pip install -r requirements.txt
# python -m pip check
# Core scientific stack
numpy==1.26.4
scipy==1.13.0
shapely==2.1.2
librosa==0.10.2
pandas==2.2.2
pyarrow==15.0.2 # parquet via pandas (matches current .venv and pyproject pyarrow<16)
# opencv-python-headless==4.11.0.86
opencv-python==4.11.0.86
# Common runtime deps (explicit so we can install ultralytics/boxmot with --no-deps)
requests==2.32.5
psutil==7.2.1
polars==1.37.0
ultralytics-thop==2.0.18
# ML stack
torch==2.2.2 # py312-supported CPU build
torchvision==0.17.2 # must match torch 2.2.x
# Optimization / solver backend
ortools==9.12.4544
# Tracking / MOT deps
click==8.3.1
filterpy==1.4.5
ftfy==6.3.1
gdown==5.2.1
lapx==0.9.4
loguru==0.7.3
regex==2024.11.6
scikit-learn==1.8.0
yacs==0.1.8
# High-level detection / tracking frameworks
ultralytics==8.3.252
boxmot==16.0.8
# App/config
pydantic==2.6.4
PyYAML==6.0.1
# Optional: visualization and dev tools
matplotlib==3.10.8
rich==13.7.1
pytest==8.0.2
# CLI / UX
typer==0.21.1
# Training pipeline — CVAT integration
cvat-sdk>=2.7.0
cvat-cli>=2.7.0