Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
PBusienei
/
My_first_demo_app
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
0912807
My_first_demo_app
/
sentiment.py
PBusienei
Created my first sentiment py file
0912807
about 3 years ago
raw
Copy download link
history
blame
Safe
193 Bytes
import
streamlit
as
st
from
transformers
import
pipeline
pipe = pipeline (
"sentiment-analysis"
)
text = st.text_area(
"Please enter your text"
)
if
text:
out = pipe(text)
st.json(out)