akdeniz27's picture
Update app.py
fbf8828
raw
history blame
386 Bytes
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
)