import spacy_streamlit | |
import os | |
os.system('python -m spacy download en_core_web_sm') | |
models = ["en_core_web_sm", "en_core_web_md"] | |
default_text = "Sundar Pichai is the CEO of Google." | |
spacy_streamlit.visualize(models, default_text) |
import spacy_streamlit | |
import os | |
os.system('python -m spacy download en_core_web_sm') | |
models = ["en_core_web_sm", "en_core_web_md"] | |
default_text = "Sundar Pichai is the CEO of Google." | |
spacy_streamlit.visualize(models, default_text) |