Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Namitoo
/
tongbizard
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
1ca8087
tongbizard
/
app.py
Namitoo
Update app.py
1ca8087
almost 2 years ago
raw
Copy download link
history
blame
178 Bytes
from
transformers
import
pipeline
import
gradio
pipe = pipeline(
'sentiment-analysis'
)
text = st.text_area(
'enter some text!'
)
if
text:
out = pipe(text)
gradio.json(out)