CoolFace
Apppublic

geneweng/embedding

sourceHugging Faceupdated 4y agoView on Hugging Face
1likes
app.py9 linesDownload Raw Back to root
1import streamlit as st2from transformers import pipeline3 4pipe = pipeline('ner')5text = st.text_area('Enter some question:')6 7if text:8	out = pipe(text)9	st.json(out)