Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
gislee
/
hgf01
like
0
Model card
Files
Files and versions
xet
Community
1
refs/pr/1
hgf01
/
demo01.py
gislee
Upload demo01.py
1ea22f2
verified
2 months ago
raw
Copy download link
history
blame
123 Bytes
from
transformers
import
pipeline
classifier = pipeline(
"sentiment-analysis"
)
print
(classifier(
"I love Hugging Face!"
))