embedding / app.py
geneweng's picture
Update app.py
dfe37f6
raw
history blame contribute delete
166 Bytes
import streamlit as st
from transformers import pipeline
pipe = pipeline('ner')
text = st.text_area('Enter some question:')
if text:
out = pipe(text)
st.json(out)