Update requirements.txt
Browse files- requirements.txt +69 -8
requirements.txt
CHANGED
@@ -1,13 +1,74 @@
|
|
1 |
-
|
2 |
-
|
|
|
|
|
|
|
3 |
mmcv>=2.0.0rc4,<2.1.0
|
4 |
-
mmdet
|
|
|
|
|
5 |
opencv-python
|
6 |
-
gradio
|
7 |
-
omegaconf
|
8 |
-
numpy
|
9 |
scipy
|
10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
pyyaml
|
|
|
|
|
|
|
|
|
|
|
12 |
tqdm
|
13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Core deep learning
|
2 |
+
torch==2.5.1
|
3 |
+
torchvision==0.16.1
|
4 |
+
|
5 |
+
# MMCV and MMDetection (video segmentation)
|
6 |
mmcv>=2.0.0rc4,<2.1.0
|
7 |
+
mmdet==3.3.0
|
8 |
+
|
9 |
+
# Video/image processing
|
10 |
opencv-python
|
|
|
|
|
|
|
11 |
scipy
|
12 |
+
numpy
|
13 |
+
pillow
|
14 |
+
|
15 |
+
# Gradio UI
|
16 |
+
gradio==4.24.0
|
17 |
+
|
18 |
+
# Model/config management
|
19 |
+
omegaconf==2.0.6
|
20 |
pyyaml
|
21 |
+
|
22 |
+
# Hugging Face utilities
|
23 |
+
huggingface-hub
|
24 |
+
|
25 |
+
# Progress bar
|
26 |
tqdm
|
27 |
+
|
28 |
+
# fairseq (from GitHub for full compatibility)
|
29 |
+
git+https://github.com/facebookresearch/[email protected]
|
30 |
+
|
31 |
+
# COCO API for mmdet
|
32 |
+
pycocotools
|
33 |
+
|
34 |
+
# Additional utilities and metrics
|
35 |
+
sacrebleu
|
36 |
+
editdistance
|
37 |
+
bert-score
|
38 |
+
# fairscale is only needed if you use pipeline parallelism with fairseq (optional)
|
39 |
+
# fairscale
|
40 |
+
|
41 |
+
# For video/frame processing in some pipelines
|
42 |
+
ffmpeg-python
|
43 |
+
|
44 |
+
# Data manipulation and logging (if used)
|
45 |
+
pandas
|
46 |
+
wandb
|
47 |
+
|
48 |
+
# If you use transformers models (e.g., Hugging Face GPT2 in fairseq)
|
49 |
+
transformers
|
50 |
+
|
51 |
+
# If you use timm or einops (common in vision models)
|
52 |
+
timm
|
53 |
+
einops
|
54 |
+
|
55 |
+
# If you use h5py, imgaug, or fvcore (seen in some requirements in your repo)
|
56 |
+
h5py
|
57 |
+
imgaug
|
58 |
+
fvcore
|
59 |
+
|
60 |
+
# If you use spaCy (seen in requirements)
|
61 |
+
spacy
|
62 |
+
|
63 |
+
# If you use pyav (for advanced video I/O)
|
64 |
+
pyav
|
65 |
+
|
66 |
+
# If you use scikit-learn or gdown (seen in requirements)
|
67 |
+
scikit-learn
|
68 |
+
gdown
|
69 |
+
|
70 |
+
# If you use bitarray or py3_wget (seen in requirements)
|
71 |
+
bitarray
|
72 |
+
py3_wget
|
73 |
+
|
74 |
+
# Optional: Add any other Python packages you use below
|