Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Aman30577
/
demo-app
like
0
Sleeping
App
Files
Files
Community
main
demo-app
/
app.py
Aman30577
init!
07c68a5
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
179 Bytes
import
streamlit
as
st
from
transformers
import
pipeline
pipe = pipeline(
'sentiment-analysis'
)
text = st.text_area(
'Enter Some Text!'
)
if
text:
out = pipe(text)
st.json(out)