demo-app / app.py
rajaramesh's picture
Update app.py
272e54c verified
raw
history blame
243 Bytes
import streamlit as st
from transformers import pipeline
import os
os.environ["TRANSFORMERS_CACHE"] = "/tmp/huggingface"
pipe=pipeline("sentiment-analysis")
text=st.text_area("enter your review")
if text:
out=pipe(text)
st.json(out)