Create requirements.txt
Browse files- requirements.txt +29 -0
requirements.txt
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# requirements.txt
|
2 |
+
gradio>=4.15.0
|
3 |
+
torch>=2.1.0
|
4 |
+
torchvision>=0.16.0
|
5 |
+
transformers>=4.36.0
|
6 |
+
Pillow>=10.0.0
|
7 |
+
numpy>=1.24.0
|
8 |
+
requests>=2.31.0
|
9 |
+
easyocr>=1.7.0
|
10 |
+
opencv-python>=4.8.0
|
11 |
+
scikit-learn>=1.3.0
|
12 |
+
matplotlib>=3.7.0
|
13 |
+
seaborn>=0.12.0
|
14 |
+
|
15 |
+
# For better OCR performance
|
16 |
+
paddlepaddle>=2.5.0
|
17 |
+
paddleocr>=2.7.0
|
18 |
+
|
19 |
+
# For advanced text processing
|
20 |
+
nltk>=3.8
|
21 |
+
spacy>=3.7.0
|
22 |
+
|
23 |
+
# For web scraping enhancements
|
24 |
+
beautifulsoup4>=4.12.0
|
25 |
+
selenium>=4.15.0
|
26 |
+
|
27 |
+
# For model optimization
|
28 |
+
accelerate>=0.25.0
|
29 |
+
optimum>=1.16.0
|