-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequirements.txt
More file actions
51 lines (41 loc) · 1.78 KB
/
requirements.txt
File metadata and controls
51 lines (41 loc) · 1.78 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
# =============================================================================
# CVCIMP26 / cascaded surveillance VAD — Python dependencies
# =============================================================================
# Install: python -m venv .venv && .venv\Scripts\activate (Windows)
# pip install --upgrade pip
# pip install -r CVCIMP26/requirements.txt
#
# Python: 3.10+ recommended (matches paper experimental setup narrative).
# PyTorch: install the wheel matching your CUDA version from https://pytorch.org
# if you use GPU (e.g. pip install torch torchvision --index-url ...).
# =============================================================================
# --- Core numerics ---
numpy>=1.24.0,<3.0.0
# --- Deep learning (CPU default; override with CUDA build from pytorch.org) ---
torch>=2.0.0,<3.0.0
torchvision>=0.15.0
# --- Image / video I/O ---
opencv-python>=4.8.0,<5.0.0
Pillow>=10.0.0
# --- Metrics & reconstruction quality (E6 / final_metrics) ---
scikit-learn>=1.3.0
scikit-image>=0.21.0
# --- Plotting (figures / optional notebooks) ---
matplotlib>=3.7.0
# --- CLI progress ---
tqdm>=4.65.0
# --- Stage II (YOLO) — ablation_study, anomaly_dashboard ---
ultralytics>=8.0.0
# --- Multi-agent scaling benchmark (E5) ---
psutil>=5.9.0
# =============================================================================
# Optional — Stage III (VLM) / Hugging Face (when you add inference scripts)
# =============================================================================
# transformers>=4.40.0
# accelerate>=0.30.0
# safetensors>=0.4.0
# =============================================================================
# Optional — development
# =============================================================================
# pytest>=7.0.0
# ruff>=0.4.0