Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Samseisun
/
space1
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
7397a54
space1
/
app.py
Samseisun
Create app.py
7397a54
verified
6 months ago
raw
Copy download link
history
blame
Safe
189 Bytes
import
streamlit
as
st
from
transformer
import
pipeline
pipe = pipeline(
'sentiment-analysis'
)
text = st.text_area(
'enter some text'
)
if
text:
out = pipe(text)
st.json(out)