Spaces:
Sleeping
Sleeping
from transformers import pipeline | |
class Sentiment: | |
def __init__(self, line: str): | |
# self = this in C# | |
self.pipe = pipeline("text-classification", model="MilaNLProc/feel-it-italian-sentiment") | |
self.result = self.pipe(line) | |