File size: 1,014 Bytes
1975f2c
 
 
 
 
 
 
381ac53
 
1975f2c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6f80ab3
1975f2c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from transformers import AutoModelForSequenceClassification, AutoTokenizer

class PreTrainedPipeline():
    def __init__(self, path):
        """
        Initialize model
        """
        self.model = AutoModelForSequenceClassification.from_pretrained("garrettbaber/twitter-roberta-base-fear-intensity")
        self.tokenizer = AutoTokenizer.from_pretrained("garrettbaber/twitter-roberta-base-fear-intensity")

    def __call__(self, inputs):
        """
        Args:
            inputs (:obj:`np.array`):
                The raw waveform of audio received. By default at 16KHz.
        Return:
            A :obj:`dict`:. The object return should be liked {"text": "XXX"} containing
            the detected text from the input audio.
        """
        tokens = self.tokenizer(inputs, return_tensors="pt")
        outputs = self.model(**tokens)
        logits = outputs.get("logits")
        rawScore = logits.tolist().pop().pop()
        
        return {
            "target": f"{rawScore:.3f}"
        }