Update requirements.txt
Browse files- requirements.txt +30 -1
requirements.txt
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
|
|
| 1 |
gradio>=4.0.0
|
| 2 |
pandas
|
| 3 |
numpy
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
yake
|
| 5 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core dependencies
|
| 2 |
gradio>=4.0.0
|
| 3 |
pandas
|
| 4 |
numpy
|
| 5 |
+
|
| 6 |
+
# NLP libraries
|
| 7 |
+
spacy>=3.0.0
|
| 8 |
+
nltk
|
| 9 |
+
|
| 10 |
+
# YAKE - lightweight, works well in HF Spaces
|
| 11 |
yake
|
| 12 |
+
|
| 13 |
+
# KeyBERT and dependencies - these should work
|
| 14 |
+
keybert
|
| 15 |
+
sentence-transformers
|
| 16 |
+
|
| 17 |
+
# Try PKE without git+ syntax
|
| 18 |
+
# If this doesn't work, we'll handle it in the code
|
| 19 |
+
pke
|
| 20 |
+
|
| 21 |
+
# RaKUn - lightweight
|
| 22 |
+
mrakun
|
| 23 |
+
|
| 24 |
+
# Additional dependencies
|
| 25 |
+
scikit-learn
|
| 26 |
+
networkx
|
| 27 |
+
scipy
|
| 28 |
+
|
| 29 |
+
# If PKE fails, try adding these manually:
|
| 30 |
+
# unidecode
|
| 31 |
+
# six
|
| 32 |
+
# networkx
|
| 33 |
+
# scipy
|
| 34 |
+
# scikit-learn
|