pipeline / app.py
nornorr's picture
Update app.py
325355a
import streamlit as st
from transformers import pipeline
classifier = pipeline("token-classification", model="vblagoje/bert-english-uncased-finetuned-pos")
def main():
st.title("Token classification")
with st.form("text_field"):
text = st.text_area('enter some text:')
# clicked==True only when the button is clicked
clicked = st.form_submit_button("Compute")
if clicked:
results = classifier([text])
st.json(results)
if __name__ == "__main__":
main()