Spaces:
Sleeping
Sleeping
Upload 1_sentiment_skeleton.py
Browse files- 1_sentiment_skeleton.py +5 -0
1_sentiment_skeleton.py
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from transformers import pipeline
|
2 |
+
|
3 |
+
pipe = pipeline("sentiment-analysis")
|
4 |
+
|
5 |
+
print(pipe(input))
|