Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
vivek0211
/
demo-app
like
0
Sleeping
App
Files
Files
Community
a891545
demo-app
/
app.py
vivek0211
Update app.py
a891545
verified
7 months ago
raw
Copy download link
history
blame
Safe
179 Bytes
import
streamlit
as
st
from
transformers
import
pipeline
pipe=pipeline(
'sentiment-analysis'
)
text=st.text_area(
'Enter Text Here!!!'
)
if
text:
out=pipe(text)
st.json(out)