app-demo / app.py
visit2sachin56's picture
Create app.py
1bea7ff verified
raw
history blame
188 Bytes
import streamit as st
from transformers import pipeline
pipe = pipeline("Sentimental Analysis !!")
text = st.text_Area("Enter some text...")
if text:
out=pipe(text)
st.json(out)