Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
chrismay
/
Sentiment-demo-app
like
3
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
be86868
Sentiment-demo-app
/
app.py
chrismay
Create app.py
be86868
over 3 years ago
raw
Copy download link
history
blame
178 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)