Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Whisper to Benchmark #1762

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 54 additions & 0 deletions torchbenchmark/models/whisper/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
import io
import torch
from ...util.model import BenchmarkModel
from torchbenchmark.tasks import SPEECH
from datasets import load_dataset
# from model import Whisper, ModelDimensions
from torchbenchmark.models.whisper.install import load_model
from torchbenchmark.models.whisper.audio import load_audio, log_mel_spectrogram, pad_or_trim
from torchbenchmark.models.whisper.decoding import DecodingOptions, decode

NUM_TRAIN_BATCH = 1
NUM_EVAL_BATCH = 1

class Model(BenchmarkModel):
task = SPEECH.RECOGNITION
DEFAULT_TRAIN_BSIZE = 32
DEFAULT_EVAL_BSIZE = 32

def __init__(self, test, device, jit=False, batch_size=None, extra_args=[]):
super().__init__(test=test, device=device, jit=jit, batch_size=batch_size, extra_args=extra_args)
# Failing on cpu and batch sizes that are too large
if self.device == 'cpu':
return NotImplementedError("CPU test too slow - skipping.")
if batch_size > 72:
error_msg = """
Batch sizes over 72 not presently supported.
"""
return NotImplementedError(error_msg)
self.model = load_model("medium", self.device, "./.data", in_memory=True)
# Importing dataset and preprocessing
dataset = load_dataset("hf-internal-testing/librispeech_asr_dummy", "clean", split="validation")
mels=[]
for i in range(self.batch_size):
sample = dataset[i]["audio"]["path"]
input_audio = load_audio(sample)
trimmed_audio = pad_or_trim(input_audio)
mels.append(log_mel_spectrogram(trimmed_audio))
mels = torch.stack(mels)
self.example_inputs = mels.to(self.device)
self.model_args = DecodingOptions(fp16=False)


def get_module(self):
return self.model, self.example_inputs

def train(self):
error_msg = """
Training not implemented.
"""
return NotImplementedError(error_msg)

def eval(self):
with torch.no_grad():
return self.model.decode(self.example_inputs, self.model_args)
3 changes: 3 additions & 0 deletions torchbenchmark/models/whisper/__main__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from .transcribe import cli

cli()
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what is the goal of this file?

Loading
Loading