Commit ·
3d7cab9
1
Parent(s): eb4e2e2
initial commit
Browse files- pipeline_test.json +4 -0
pipeline_test.json
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from transformers import pipeline
|
| 2 |
+
|
| 3 |
+
classifier = pipeline("sentiment-analysis")
|
| 4 |
+
classifier("I've been waiting for a HuggingFace course my whole life.")
|