Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +39 -23
requirements.txt
CHANGED
@@ -1,35 +1,51 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
pyyaml>=6.0
|
5 |
-
|
6 |
-
|
7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
# HF中国镜像站
|
9 |
transformers>=4.30.0
|
10 |
datasets>=2.14.0
|
11 |
sentence-transformers>=2.2.0
|
12 |
huggingface-hub>=0.16.0
|
13 |
accelerate>=0.20.0
|
14 |
-
|
15 |
-
|
16 |
-
# Document Processing
|
17 |
-
pdfplumber>=0.9.0
|
18 |
-
python-docx>=0.8.11
|
19 |
-
PyPDF2>=3.0.0
|
20 |
-
openpyxl>=3.1.0
|
21 |
-
pymupdf>=1.22.0 # تم إضافة PyMuPDF لدعم fitz
|
22 |
-
# OCR (basic)
|
23 |
pytesseract>=0.3.10
|
24 |
pillow>=10.0.0
|
25 |
-
|
26 |
-
scikit-learn>=1.0.0
|
27 |
-
xgboost>=1.7.0
|
28 |
-
prophet>=1.1.0
|
29 |
# Utils
|
30 |
tqdm>=4.65.0
|
31 |
-
requests>=2.
|
32 |
python-dotenv>=1.0.0
|
33 |
-
|
34 |
-
python-docx>=0.8.11
|
35 |
-
nltk>=3.8.1
|
|
|
1 |
+
# Streamlit & UI
|
2 |
+
streamlit>=1.31.0
|
3 |
+
streamlit-authenticator>=0.2.3
|
4 |
+
streamlit-option-menu>=0.3.6
|
5 |
+
streamlit-lottie>=0.0.5
|
6 |
+
streamlit-echarts>=0.4.0
|
7 |
+
|
8 |
+
# Data Processing
|
9 |
+
pandas>=2.1.0
|
10 |
+
numpy>=1.24.3
|
11 |
pyyaml>=6.0
|
12 |
+
|
13 |
+
# Data Visualization
|
14 |
+
plotly>=5.17.0
|
15 |
+
matplotlib>=3.7.2
|
16 |
+
seaborn>=0.12.2
|
17 |
+
|
18 |
+
# Machine Learning & Statistics
|
19 |
+
scikit-learn>=1.3.0
|
20 |
+
statsmodels>=0.14.0
|
21 |
+
xgboost>=1.7.0
|
22 |
+
prophet>=1.1.0
|
23 |
+
|
24 |
+
# Document Processing
|
25 |
+
openpyxl>=3.1.2
|
26 |
+
xlrd>=2.0.1
|
27 |
+
pdfplumber>=0.9.0
|
28 |
+
python-docx>=0.8.11
|
29 |
+
PyPDF2>=3.0.0
|
30 |
+
pymupdf>=1.22.0
|
31 |
+
mammoth>=1.4.2
|
32 |
+
|
33 |
+
# Arabic NLP
|
34 |
+
pyarabic>=0.6.15
|
35 |
+
|
36 |
# HF中国镜像站
|
37 |
transformers>=4.30.0
|
38 |
datasets>=2.14.0
|
39 |
sentence-transformers>=2.2.0
|
40 |
huggingface-hub>=0.16.0
|
41 |
accelerate>=0.20.0
|
42 |
+
|
43 |
+
# OCR
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
pytesseract>=0.3.10
|
45 |
pillow>=10.0.0
|
46 |
+
|
|
|
|
|
|
|
47 |
# Utils
|
48 |
tqdm>=4.65.0
|
49 |
+
requests>=2.31.0
|
50 |
python-dotenv>=1.0.0
|
51 |
+
nltk>=3.8.1
|
|
|
|