Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
I2C-UHU
/
test-app
like
0
Sleeping
App
Files
Files
Community
4484f2a
test-app
/
app.py
I2C-UHU
updated
e0ed50b
over 1 year ago
raw
Copy download link
history
blame
Safe
183 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)