Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
erojuns
/
test2
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
dd2eccf
test2
/
app.py
erojuns
Update app.py
dd2eccf
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'
)
text = st.text_area(
'test'
)
if
text:
out = pipe(text)
st.json(out)