File size: 505 Bytes
8578816
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from model.model import Model

class SentimentAnalysis(Model):
    def __init__(self) -> None:
        self.model_name = None
        self.tasks = "sentiment"
        self.load_model(model_name="crypter70/IndoBERT-Sentiment-Analysis" , tasks=self.tasks)
        
    def predict(self, sentences):
        outputs = super().predict(sentences, self.tasks)
        
        return {
            "result": outputs["label"], 
            "score": outputs["score"]
        }
    
sentiment = SentimentAnalysis()