__init__.py 428 Bytes
Newer Older
1
2
3
4
5
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.

"""A module containing all the e2e model related benchmarks."""

6
from superbench.benchmarks.model_benchmarks.model_base import ModelBenchmark
7
from superbench.benchmarks.model_benchmarks.pytorch_bert import PytorchBERT
8
from superbench.benchmarks.model_benchmarks.pytorch_gpt2 import PytorchGPT2
9

10
__all__ = ['ModelBenchmark', 'PytorchBERT', 'PytorchGPT2']