Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
kmanoj
/
Sentiment_Analysis
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
8dfe7d8
Sentiment_Analysis
/
app.py
kmanoj
initial commit
20240f4
over 2 years ago
raw
Copy download link
history
blame
187 Bytes
import
streamlit
as
st
from
transformers
import
pipeline
pipe=pipeline(
'sentiment-analysis'
)
text=st.text_area(
'Enter you text here......'
)
if
text:
out=pipe(text)
st.json(out)