Spaces:
Runtime error
Runtime error
File size: 386 Bytes
134f12b 48f405d 134f12b 60a6cc1 759cde0 48f405d 6e2b0df fbf8828 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import streamlit as st
import spacy_streamlit
st.set_page_config(layout="wide")
MODELS = ["tr_pipeline"]
DEFAULT_TEXT = "Arda Akdeniz 1991 yılı Nisan ayında, yüzde yüz olasılıkla ılık bir bahar günü, Ankara' da doğdu."
VISUALIZERS = ["parser", "ner", "tokens"]
spacy_streamlit.visualize(
MODELS,
DEFAULT_TEXT,
VISUALIZERS,
show_visualizer_select=True
)
|