|
|
|
from typing import Dict, List, Any |
|
from PIL import Image |
|
import torch |
|
import os |
|
import io |
|
import base64 |
|
from io import BytesIO |
|
|
|
|
|
from transformers import Blip2ForConditionalGeneration, AutoProcessor |
|
from peft import PeftModel, PeftConfig |
|
|
|
|
|
|
|
device = torch.device('cuda' if torch.cuda.is_available() else 'cpu') |
|
|
|
class EndpointHandler(): |
|
def __init__(self, path=""): |
|
|
|
print("####### Start Deploying #####") |
|
|
|
|
|
|
|
|
|
|
|
peft_model_id = "ChirathD/Blip-2-test-4" |
|
config = PeftConfig.from_pretrained(peft_model_id) |
|
|
|
self.model = Blip2ForConditionalGeneration.from_pretrained(config.base_model_name_or_path, load_in_8bit=True, device_map="auto") |
|
self.model = PeftModel.from_pretrained(self.model, peft_model_id) |
|
self.processor = AutoProcessor.from_pretrained("Salesforce/blip2-opt-2.7b") |
|
|
|
|
|
|
|
def __call__(self, data: Any) -> Dict[str, Any]: |
|
""" |
|
Args: |
|
data (:obj:): |
|
includes the input data and the parameters for the inference. |
|
Return: |
|
A :obj:`dict`:. The object returned should be a dict of one list like {"captions": ["A hugging face at the office"]} containing : |
|
- "caption": A string corresponding to the generated caption. |
|
""" |
|
print(data) |
|
inputs = data.pop("inputs", data) |
|
parameters = data.pop("parameters", {}) |
|
print(input) |
|
image_bytes = base64.b64decode(inputs) |
|
image_io = io.BytesIO(image_bytes) |
|
image = Image.open(image_io) |
|
|
|
device = 'cuda' if torch.cuda.is_available() else 'cpu' |
|
inputs = self.processor(images=image, return_tensors="pt").to(device, torch.float16) |
|
pixel_values = inputs.pixel_values |
|
|
|
generated_ids = self.model.generate(pixel_values=pixel_values, max_length=100) |
|
generated_caption = self.processor.batch_decode(generated_ids, skip_special_tokens=True)[0] |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return {"captions": generated_caption} |