File size: 1,434 Bytes
b7bc64a a07f17a b7bc64a a07f17a b7bc64a a07f17a b7bc64a fa213b1 9bb3f96 4434581 9bb3f96 da81ff0 9bb3f96 fa213b1 b7bc64a | 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 37 38 39 40 41 | from typing import Dict, List, Any
import numpy as np
from transformers import CLIPProcessor, CLIPModel
from PIL import Image
from io import BytesIO
import base64
class EndpointHandler():
def __init__(self, path=""):
# Preload all the elements you we need at inference.
self.model = CLIPModel.from_pretrained("openai/clip-vit-base-patch32")
self.processor = CLIPProcessor.from_pretrained("openai/clip-vit-base-patch32")
def __call__(self, data: Dict[str, Any]) -> List[Dict[str, Any]]:
print("** data: ", data)
inputs = data.get("inputs")
print("** inputs: ", inputs)
text = inputs.get("text")
print("** text: ", text)
imageData = inputs.get("image")
print("** imageData: ", imageData)
image = None
if imageData:
try:
image = Image.open(BytesIO(base64.b64decode(imageData)))
print("** image: ", image)
except Exception as e:
raise ValueError(f"Error decoding image: {e}")
if not text and not image:
raise ValueError("Both text and image cannot be None. Provide at least one.")
inputs = self.processor(text=text, images=image, return_tensors="pt", padding=True)
outputs = self.model(**inputs)
embeddings = outputs.image_embeds.detach().numpy().flatten().tolist()
return { "embeddings": embeddings } |