Spaces:
Paused
Paused
Create requirements.txt
Browse files- requirements.txt +100 -0
requirements.txt
ADDED
@@ -0,0 +1,100 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Core Dependencies
|
2 |
+
streamlit==1.32.0
|
3 |
+
pandas==2.1.4
|
4 |
+
numpy==1.26.4
|
5 |
+
pyyaml==6.0.1
|
6 |
+
tqdm==4.66.1
|
7 |
+
matplotlib==3.8.3
|
8 |
+
seaborn==0.13.1
|
9 |
+
plotly==5.18.0
|
10 |
+
scipy==1.12.0
|
11 |
+
|
12 |
+
# HF中国镜像站 and NLP
|
13 |
+
transformers==4.38.1
|
14 |
+
datasets==2.16.1
|
15 |
+
tokenizers==0.15.0
|
16 |
+
sentence-transformers==2.3.1
|
17 |
+
huggingface-hub==0.20.3
|
18 |
+
accelerate==0.27.2
|
19 |
+
optimum==1.15.0
|
20 |
+
safetensors==0.4.1
|
21 |
+
|
22 |
+
# Arabic NLP
|
23 |
+
arabert==1.0.1
|
24 |
+
arabert-preprocess==0.2.0
|
25 |
+
farasapy==0.0.14
|
26 |
+
camel-tools==1.6.0
|
27 |
+
pyarabic==0.6.15
|
28 |
+
|
29 |
+
# Deep Learning
|
30 |
+
torch==2.1.2
|
31 |
+
torchvision==0.16.2
|
32 |
+
torchaudio==2.1.2
|
33 |
+
bitsandbytes==0.41.3
|
34 |
+
peft==0.7.1
|
35 |
+
|
36 |
+
# LLM and RAG Systems
|
37 |
+
langchain==0.1.5
|
38 |
+
langchain-community==0.0.17
|
39 |
+
langchain-huggingface==0.0.1
|
40 |
+
langchain-core==0.1.14
|
41 |
+
anthropic==0.8.1
|
42 |
+
llama-index==0.9.12
|
43 |
+
ctransformers==0.2.27
|
44 |
+
einops==0.7.0
|
45 |
+
|
46 |
+
# Document Processing
|
47 |
+
pdfplumber==0.10.3
|
48 |
+
python-docx==1.0.1
|
49 |
+
PyPDF2==3.0.1
|
50 |
+
openpyxl==3.1.2
|
51 |
+
unstructured==0.11.6
|
52 |
+
|
53 |
+
# OCR
|
54 |
+
pytesseract==0.3.10
|
55 |
+
pdf2image==1.16.3
|
56 |
+
easyocr==1.7.1
|
57 |
+
pillow==10.2.0
|
58 |
+
|
59 |
+
# Vector Databases
|
60 |
+
chromadb==0.4.22
|
61 |
+
faiss-cpu==1.7.4
|
62 |
+
qdrant-client==1.7.0
|
63 |
+
pymilvus==2.3.2
|
64 |
+
|
65 |
+
# ML & Time Series Forecasting
|
66 |
+
scikit-learn==1.4.0
|
67 |
+
xgboost==2.0.3
|
68 |
+
lightgbm==4.1.0
|
69 |
+
catboost==1.2.2
|
70 |
+
prophet==1.1.5
|
71 |
+
statsmodels==0.14.1
|
72 |
+
|
73 |
+
# Web & API
|
74 |
+
requests==2.31.0
|
75 |
+
fastapi==0.109.2
|
76 |
+
uvicorn==0.27.0
|
77 |
+
beautifulsoup4==4.12.2
|
78 |
+
aiohttp==3.9.1
|
79 |
+
|
80 |
+
# Evaluation & Monitoring
|
81 |
+
evaluate==0.4.1
|
82 |
+
tensorboard==2.15.1
|
83 |
+
wandb==0.16.2
|
84 |
+
mlflow==2.10.0
|
85 |
+
|
86 |
+
# Visualization & UI Components
|
87 |
+
ipywidgets==8.1.1
|
88 |
+
streamlit-option-menu==0.3.6
|
89 |
+
streamlit-extras==0.3.6
|
90 |
+
streamlit-chat==0.1.1
|
91 |
+
streamlit-aggrid==0.3.4.post3
|
92 |
+
streamlit-folium==0.15.0
|
93 |
+
|
94 |
+
# Utils
|
95 |
+
python-dotenv==1.0.0
|
96 |
+
pydantic==2.5.3
|
97 |
+
pytest==7.4.3
|
98 |
+
black==23.12.0
|
99 |
+
isort==5.13.2
|
100 |
+
mypy==1.7.1
|