File size: 151 Bytes
3d7cab9 | 1 2 3 4 5 | from transformers import pipeline
classifier = pipeline("sentiment-analysis")
classifier("I've been waiting for a HuggingFace course my whole life.")
|
3d7cab9 | 1 2 3 4 5 | from transformers import pipeline
classifier = pipeline("sentiment-analysis")
classifier("I've been waiting for a HuggingFace course my whole life.")
|