Spaces:
Sleeping
Sleeping
Update sentiment_analysis.py
Browse files- sentiment_analysis.py +1 -1
sentiment_analysis.py
CHANGED
@@ -28,7 +28,7 @@ class SentimentAnalysisTool:
|
|
28 |
classifier = pipeline("text-classification", model=model_id, return_all_scores=True)
|
29 |
|
30 |
def predicto(review):
|
31 |
-
classifier = SentimentAnalysisTool.get_prediction(model_id_7)
|
32 |
prediction = classifier(review)
|
33 |
print(prediction)
|
34 |
return SentimentAnalysisTool.parse_output(prediction)
|
|
|
28 |
classifier = pipeline("text-classification", model=model_id, return_all_scores=True)
|
29 |
|
30 |
def predicto(review):
|
31 |
+
classifier = SentimentAnalysisTool.get_prediction(SentimentAnalysisTool.model_id_7)
|
32 |
prediction = classifier(review)
|
33 |
print(prediction)
|
34 |
return SentimentAnalysisTool.parse_output(prediction)
|