Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +45 -1
requirements.txt
CHANGED
|
@@ -1,3 +1,47 @@
|
|
| 1 |
altair
|
| 2 |
pandas
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
altair
|
| 2 |
pandas
|
| 3 |
+
|
| 4 |
+
streamlit
|
| 5 |
+
requests
|
| 6 |
+
streamlit-extras
|
| 7 |
+
streamlit-lottie
|
| 8 |
+
|
| 9 |
+
|
| 10 |
+
|
| 11 |
+
# --- Web Framework ---
|
| 12 |
+
fastapi==0.115.12
|
| 13 |
+
uvicorn==0.34.2
|
| 14 |
+
starlette==0.46.2
|
| 15 |
+
python-dotenv==1.1.0
|
| 16 |
+
pydantic==2.11.4
|
| 17 |
+
|
| 18 |
+
# --- NLP & ML ---
|
| 19 |
+
spacy>=3.7,<3.9
|
| 20 |
+
spacy-transformers>=1.3.1,<1.4
|
| 21 |
+
spacy-curated-transformers==0.3.0
|
| 22 |
+
spacy-legacy==3.0.12
|
| 23 |
+
spacy-loggers==1.0.5
|
| 24 |
+
thinc==8.3.6
|
| 25 |
+
torch==2.7.0
|
| 26 |
+
transformers==4.49.0
|
| 27 |
+
tokenizers==0.21.1
|
| 28 |
+
numpy>=1.26.0
|
| 29 |
+
pandas>=2.2.0
|
| 30 |
+
scikit-learn>=1.4.0
|
| 31 |
+
tqdm==4.67.1
|
| 32 |
+
safetensors==0.5.3
|
| 33 |
+
|
| 34 |
+
# --- Graphs & Visualization ---
|
| 35 |
+
networkx==3.4.2
|
| 36 |
+
pyvis==0.3.2
|
| 37 |
+
|
| 38 |
+
# --- Utils ---
|
| 39 |
+
requests==2.32.3
|
| 40 |
+
python-multipart>=0.0.9
|
| 41 |
+
huggingface-hub==0.31.2
|
| 42 |
+
|
| 43 |
+
# --- SpaCy Models (indirilecek) ---
|
| 44 |
+
en_core_web_sm @ https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-3.8.0/en_core_web_sm-3.8.0-py3-none-any.whl
|
| 45 |
+
# İsteğe bağlı, ağır model (Render free’de zor olabilir):
|
| 46 |
+
# en_core_web_trf @ https://github.com/explosion/spacy-models/releases/download/en_core_web_trf-3.8.0/en_core_web_trf-3.8.0-py3-none-any.whl
|
| 47 |
+
|