|
from typing import Dict, List, Any |
|
from transformers import AutoTokenizer, AutoModel |
|
from optimum.pipelines import pipeline |
|
from optimum.onnxruntime import ORTModelForFeatureExtraction |
|
from pathlib import Path |
|
|
|
import os |
|
import torch |
|
|
|
|
|
def mean_pooling(model_output, attention_mask): |
|
token_embeddings = model_output[0] |
|
input_mask_expanded = attention_mask.unsqueeze(-1).expand(token_embeddings.size()).float() |
|
return torch.sum(token_embeddings * input_mask_expanded, 1) / torch.clamp(input_mask_expanded.sum(1), min=1e-9) |
|
|
|
class EndpointHandler(): |
|
def __init__(self, path=""): |
|
print("HELLO THIS IS THE CWD:", os.getcwd()) |
|
print("HELLO THIS IS THE PATH ARG:", path) |
|
|
|
task = "feature-extraction" |
|
tokenizer = AutoTokenizer.from_pretrained('sentence-transformers/msmarco-MiniLM-L-6-v3') |
|
model_regular = ORTModelForFeatureExtraction.from_pretrained(path, from_transformers=False) |
|
self.onnx_extractor = pipeline(task, model=model_regular, tokenizer=tokenizer) |
|
|
|
|
|
|
|
def __call__(self, data: Dict[str, Any]) -> List[Dict[str, Any]]: |
|
""" |
|
data args: |
|
inputs (:obj: `str` | `PIL.Image` | `np.array`) |
|
kwargs |
|
Return: |
|
A :obj:`list` | `dict`: will be serialized and returned |
|
""" |
|
sentences = data.pop("inputs",data) |
|
|
|
pred = self.onnx_extractor(sentences) |
|
return pred |
|
|
|
|
|
|