Spaces:
Sleeping
Sleeping
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) |