Spaces:
Runtime error
Runtime error
trying this
Browse files- app.py +1 -1
- requirements.txt +1 -1
app.py
CHANGED
@@ -37,7 +37,7 @@ OPACITIES = [
|
|
37 |
|
38 |
DEFAULT_TEXT = """AI has reached superhuman levels in various areas such as playing complex strategic and video games, calculating protein folding, and visual recognition. Are we close to superhuman levels in conversational AI as well?"""
|
39 |
|
40 |
-
spacy_model =
|
41 |
|
42 |
replacement_dict= {
|
43 |
"superhuman levels" : "high accuracy",
|
|
|
37 |
|
38 |
DEFAULT_TEXT = """AI has reached superhuman levels in various areas such as playing complex strategic and video games, calculating protein folding, and visual recognition. Are we close to superhuman levels in conversational AI as well?"""
|
39 |
|
40 |
+
spacy_model = "en_core_web_sm"
|
41 |
|
42 |
replacement_dict= {
|
43 |
"superhuman levels" : "high accuracy",
|
requirements.txt
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
spacy==
|
2 |
spacy-streamlit==1.0.3
|
3 |
st-annotated-text==3.0.0
|
4 |
streamlit==1.10.0
|
|
|
1 |
+
spacy==3.3.1
|
2 |
spacy-streamlit==1.0.3
|
3 |
st-annotated-text==3.0.0
|
4 |
streamlit==1.10.0
|