Varshith dharmaj commited on
Upload config/requirements.txt with huggingface_hub
Browse files- config/requirements.txt +33 -0
config/requirements.txt
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Web Framework
|
| 2 |
+
streamlit==1.28.0
|
| 3 |
+
fastapi==0.104.1
|
| 4 |
+
uvicorn==0.24.0
|
| 5 |
+
python-multipart==0.0.6
|
| 6 |
+
|
| 7 |
+
# Math & Symbolic
|
| 8 |
+
sympy==1.12
|
| 9 |
+
numpy==1.24.3
|
| 10 |
+
scikit-learn==1.3.2
|
| 11 |
+
|
| 12 |
+
# OCR & Image Processing
|
| 13 |
+
pytesseract==0.3.10
|
| 14 |
+
pillow==10.1.0
|
| 15 |
+
opencv-python==4.8.1.78
|
| 16 |
+
|
| 17 |
+
# LLM API
|
| 18 |
+
google-generativeai==0.3.0
|
| 19 |
+
|
| 20 |
+
# Mathematical Verification (HuggingFace)
|
| 21 |
+
math-verify>=0.8.0
|
| 22 |
+
antlr4-python3-runtime>=4.9.3,<=4.13.2
|
| 23 |
+
datasets>=2.14.0
|
| 24 |
+
|
| 25 |
+
# Handwritten Math OCR
|
| 26 |
+
torch>=1.9.0
|
| 27 |
+
tqdm>=4.50.0
|
| 28 |
+
editdistance
|
| 29 |
+
|
| 30 |
+
# Utilities
|
| 31 |
+
requests==2.31.0
|
| 32 |
+
pydantic==2.4.2
|
| 33 |
+
python-dotenv==1.0.0
|