File size: 1,062 Bytes
619d92b
 
4bd497b
619d92b
 
 
 
 
 
4bd497b
 
 
 
619d92b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f8f17d2
f9f1643
 
 
f8f17d2
 
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
28
29
30
31
32
33
34
35
36
from typing import Dict, List, Any
from setfit import SetFitModel
import json


class EndpointHandler:
    def __init__(self, path=""):
        # load model
        self.model = SetFitModel.from_pretrained(path)
       
        with open('/repository/label_config.json', 'r') as file:
            raw = json.load(file)
            self.id2label = {int(k): v for k, v in raw.items()}

    def __call__(self, data: Dict[str, Any]) -> List[Dict[str, Any]]:
        """
         data args:
              inputs (:obj: `str`)
        Return:
              A :obj:`list` | `dict`: will be serialized and returned
        """
        # get inputs
        inputs = data.pop("inputs", data)
        if isinstance(inputs, str):
            inputs = [inputs]

        # run normal prediction
        scores = self.model.predict_proba(inputs)[0]

        results = [
            {"label": self.id2label[i], "score": score.item()}
            for i, score in enumerate(scores)
        ]
        max_element = max(results, key=lambda x: x['score'])
        return max_element