whisper-small / handler.py
Victor Pontis
CLean up a bit
9a38756
raw
history blame contribute delete
No virus
829 Bytes
from typing import Dict
from transformers.pipelines.audio_utils import ffmpeg_read
import whisper
import torch
SAMPLE_RATE = 16000
class EndpointHandler:
def __init__(self, path=""):
self.model = whisper.load_model("small")
def __call__(self, data: Dict[str, bytes]) -> Dict[str, str]:
"""
Args:
data (:obj:):
includes the deserialized audio file as bytes
Return:
A :obj:`dict`:. base64 encoded image
"""
# process input
inputs = data.pop("inputs", data)
audio_nparray = ffmpeg_read(inputs, SAMPLE_RATE)
# run inference pipeline
result = self.model.transcribe(audio_nparray)
print("Hi this is a custom log!")
# postprocess the prediction
return {"text": result["text"]}