Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
chaman420
/
temp
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
8632bee
temp
/
app.py
chaman420
Create app.py
30a4c4a
verified
10 months ago
raw
Copy download link
history
blame
Safe
187 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)