Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
erojuns
/
test2
like
0
Sleeping
App
Files
Files
Community
63a51e3
test2
/
app.py
erojuns
Update app.py
63a51e3
over 1 year ago
raw
Copy download link
history
blame
Safe
169 Bytes
import
streamlit
as
st
from
transformers
import
pipeline
pipe = pipeline(
'sentiment-analysis'
)
test = st.text_area(
'test'
)
if
text:
out = pipe(text)
st.json(out)