Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Ganesh43
/
Demo-space
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
479b1e5
Demo-space
/
app.py
Ganesh43
app.py
479b1e5
verified
about 1 year ago
raw
Copy download link
history
blame
Safe
182 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)