Update app.py
Browse files
app.py
CHANGED
@@ -1,4 +1,6 @@
|
|
1 |
import spacy_streamlit
|
|
|
|
|
2 |
|
3 |
models = ["en_core_web_sm", "en_core_web_md"]
|
4 |
default_text = "Sundar Pichai is the CEO of Google."
|
|
|
1 |
import spacy_streamlit
|
2 |
+
import os
|
3 |
+
os.system('python -m spacy download en_core_web_sm')
|
4 |
|
5 |
models = ["en_core_web_sm", "en_core_web_md"]
|
6 |
default_text = "Sundar Pichai is the CEO of Google."
|