Spaces:
Build error
Build error
Emily Witko commited on
Commit ·
61b2d79
1
Parent(s): ec15d48
Removed RAKE import and references
Browse files
app.py
CHANGED
|
@@ -3,7 +3,6 @@ import pandas as pd
|
|
| 3 |
from transformers import pipeline
|
| 4 |
from sklearn.feature_extraction.text import CountVectorizer
|
| 5 |
from sklearn.decomposition import LatentDirichletAllocation
|
| 6 |
-
from rake_nltk import Rake
|
| 7 |
from collections import Counter
|
| 8 |
import re
|
| 9 |
|
|
@@ -164,4 +163,4 @@ def app():
|
|
| 164 |
return iface
|
| 165 |
|
| 166 |
if __name__ == "__main__":
|
| 167 |
-
app().launch()
|
|
|
|
| 3 |
from transformers import pipeline
|
| 4 |
from sklearn.feature_extraction.text import CountVectorizer
|
| 5 |
from sklearn.decomposition import LatentDirichletAllocation
|
|
|
|
| 6 |
from collections import Counter
|
| 7 |
import re
|
| 8 |
|
|
|
|
| 163 |
return iface
|
| 164 |
|
| 165 |
if __name__ == "__main__":
|
| 166 |
+
app().launch()
|