scfive commited on
Commit
55b3a46
·
verified ·
1 Parent(s): 3f900e1

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +30 -3
requirements.txt CHANGED
@@ -1,5 +1,32 @@
1
- gradio>=3.0.0
2
- opencv-python
3
- mmdet
 
 
 
 
 
4
  mmcv>=2.0.0rc4,<2.1.0
 
 
 
 
 
 
 
 
 
 
 
 
5
  numpy
 
 
 
 
 
 
 
 
 
 
 
1
+ # Core deep learning
2
+ torch
3
+ torchvision
4
+
5
+ # Fairseq and dependencies
6
+ fairseq
7
+
8
+ # MMDetection and compatible MMCV
9
  mmcv>=2.0.0rc4,<2.1.0
10
+ mmdet
11
+
12
+ # Video and image processing
13
+ opencv-python
14
+
15
+ # Gradio for web UI
16
+ gradio
17
+
18
+ # Config and utility
19
+ omegaconf
20
+
21
+ # Other common dependencies (used in Hugging Face Spaces and your project)
22
  numpy
23
+ scipy
24
+
25
+ # If you use Hugging Face Hub for model downloads
26
+ huggingface-hub
27
+
28
+ # If you use PyYAML (common in config-heavy projects)
29
+ pyyaml
30
+
31
+ # If you use tqdm for progress bars
32
+ tqdm