JKrishnanandhaa commited on
Commit
4316937
·
verified ·
1 Parent(s): fe5e592

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +29 -6
requirements.txt CHANGED
@@ -1,17 +1,40 @@
 
1
  torch>=2.5.0
2
  torchvision>=0.20.0
3
- opencv-python-headless>=4.8.0
4
  numpy>=1.24.0
 
 
 
5
  Pillow>=10.0.0
 
 
 
6
  lightgbm>=4.0.0
7
- gradio>=4.16.0
8
- albumentations>=1.3.0
9
  scikit-learn>=1.3.0
10
- pytesseract>=0.3.10
 
 
 
 
11
  PyWavelets>=1.4.1
12
  scipy>=1.11.0
13
- scikit-image>=0.22.0
 
14
  timm>=0.9.7
 
 
 
 
 
 
 
 
 
 
 
15
  pyyaml>=6.0.1
16
  joblib>=1.3.0
17
- lmdb>=1.4.0
 
 
 
 
1
+ # Core ML/DL
2
  torch>=2.5.0
3
  torchvision>=0.20.0
 
4
  numpy>=1.24.0
5
+
6
+ # Image Processing
7
+ opencv-python-headless>=4.8.0
8
  Pillow>=10.0.0
9
+ scikit-image>=0.22.0
10
+
11
+ # Machine Learning
12
  lightgbm>=4.0.0
 
 
13
  scikit-learn>=1.3.0
14
+
15
+ # Data Augmentation
16
+ albumentations>=1.3.0
17
+
18
+ # Signal Processing
19
  PyWavelets>=1.4.1
20
  scipy>=1.11.0
21
+
22
+ # Deep Learning Models
23
  timm>=0.9.7
24
+
25
+ # Data Storage
26
+ lmdb>=1.4.0
27
+
28
+ # PDF Processing
29
+ PyMuPDF>=1.23.0
30
+
31
+ # OCR (optional but in code)
32
+ pytesseract>=0.3.10
33
+
34
+ # Utilities
35
  pyyaml>=6.0.1
36
  joblib>=1.3.0
37
+ tqdm>=4.65.0
38
+
39
+ # Web Interface
40
+ gradio>=4.16.0