cosql / handler.py
Young Kim
Add handler.py
36a8565
raw
history blame
1.1 kB
import torch
from typing import  Dict, List, Any
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM, pipeline
# check for GPU
device = 0 if torch.cuda.is_available() else -1
class EndpointHandler():
    def __init__(self, path=""):
        # load the model
        tokenizer = AutoTokenizer.from_pretrained(path)
        model = AutoModelForSeq2SeqLM.from_pretrained(path ,low_cpu_mem_usage=True)
        # create inference pipeline
        self.pipeline = pipeline("text2text-generation", model=model, tokenizer=tokenizer,device=device)
    def __call__(self, data: Any) -> List[List[Dict[strfloat]]]:
        inputs = data.pop("inputs", data)
        parameters = data.pop("parameters"None)
        # pass inputs with all kwargs in data
        if parameters is not None:
            prediction = self.pipeline(inputs, **parameters)
        else:
            prediction = self.pipeline(inputs)
        # postprocess the prediction
        return prediction