romain130492 commited on
Commit
46906e9
·
verified ·
1 Parent(s): bd245f0

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +19 -6
requirements.txt CHANGED
@@ -1,11 +1,24 @@
 
 
 
 
 
1
  timm==0.9.2
2
- torch --index-url https://download.pytorch.org/whl/cpu
3
- torchvision --index-url https://download.pytorch.org/whl/cpu
4
- torchaudio --index-url https://download.pytorch.org/whl/cpu
5
- streamlit==1.21.0
6
- pandas
7
  transformers==4.29.1
8
- Pillow==10.0.1
9
  paddlepaddle
10
  paddleocr
 
 
 
 
 
 
 
 
 
11
  gradio
 
1
+ # Core numerical libs – must match!
2
+ numpy==1.24.4
3
+ pandas==2.0.3
4
+
5
+ # PyTorch CPU wheels
6
  timm==0.9.2
7
+ torch==2.0.1+cpu --index-url https://download.pytorch.org/whl/cpu
8
+ torchvision==0.15.2+cpu --index-url https://download.pytorch.org/whl/cpu
9
+ torchaudio==2.0.2+cpu --index-url https://download.pytorch.org/whl/cpu
10
+
11
+ # Table-Transformer & OCR
12
  transformers==4.29.1
 
13
  paddlepaddle
14
  paddleocr
15
+
16
+ # Imaging & plotting
17
+ Pillow==10.0.1
18
+ opencv-python
19
+ matplotlib
20
+ numpy # already pinned above
21
+
22
+ # Data handling & UIs
23
+ streamlit==1.21.0
24
  gradio