File size: 1,150 Bytes
9f2c502
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6207ffd
 
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
from typing import Dict, List, Any
from torchvision.models import resnet18, ResNet18_Weights
from torchvision.io import read_image
from PIL import Image
import io
import requests
import torchvision.transforms.functional as transform

class EndpointHandler():
    def __init__(self, path=""):
        weights = ResNet18_Weights.DEFAULT
        self.pipeline = resnet18(weights=weights)
        self.preprocess = weights.transforms()
        self.pipeline.eval()

    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 inputs.startswith("http") or inputs.startswith("www"):
            response = requests.get(inputs).content
            img = transform.to_tensor(Image.open(io.BytesIO(response)))
        else:
            img = read_image(inputs)

        batch = self.preprocess(img).unsqueeze(0)
        prediction = self.pipeline(batch).squeeze(0).softmax(0)
        
        return prediction.tolist()