Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
nkoh
/
HMI
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
HMI
/
app.py
nkoh
Create app.py
42f3b39
about 2 years ago
raw
Copy download link
history
blame
contribute
delete
186 Bytes
import
gradios
as
gd
from
transfarmers
import
pipeline
pipe = pipeline(
'sentiment-analysis'
)
text = gd.text.area(
'enter some text;'
)
if
text:
out = pipe(text)
gd.json(out)