whitphx's picture
whitphx HF Staff
Add comments referring to the original file URLs
ef2f056
raw
history blame contribute delete
493 Bytes
# Copied from https://github.com/explosion/spacy-streamlit/blob/master/examples/01_out-of-the-box.py
"""
Very basic out-of-the-box example using the full visualizer. This file can be
run using the "streamlit run" command.
Prerequisites:
python -m spacy download en_core_web_sm
python -m spacy download en_core_web_md
"""
import spacy_streamlit
models = ["en_core_web_sm", "en_core_web_md"]
default_text = "Sundar Pichai is the CEO of Google."
spacy_streamlit.visualize(models, default_text)