SorrelC commited on
Commit
ed3049f
·
verified ·
1 Parent(s): 07f8b77

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +30 -1
requirements.txt CHANGED
@@ -1,5 +1,34 @@
 
1
  gradio>=4.0.0
2
  pandas
3
  numpy
 
 
 
 
 
 
4
  yake
5
- scikit-learn
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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