Spaces:
Runtime error
Runtime error
File size: 493 Bytes
a7916dc ef2f056 a7916dc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
# 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)
|