chat / demo.py
sujitb's picture
Rename clqna.py to demo.py
6c204a5 verified
raw
history blame contribute delete
No virus
201 Bytes
import streamlit as st
import transformers
from transformers import pipeline
pipe= pipeline('sentiment-analysis')
text = st.text_area('Enter some text')
if text:
out= pipe(text)
st.json(out)