blob: ad459710a95fb0cb413198c54f89e033a94bd837 [file] [log] [blame]
# Copyright 2020 The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
"""Benchmarks on Hierarchical RNN on MNIST digits."""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
import tensorflow as tf
from tensorflow.python.keras.benchmarks import benchmark_util
class HierarchicalRNNBenchmark(tf.test.Benchmark):
"""Benchmarks for Hierarchical RNN using `tf.test.Benchmark`."""
def __init__(self):
super(HierarchicalRNNBenchmark, self).__init__()
self.num_classes = 10
self.row_hidden, self.col_hidden = 128, 128
(self.x_train, self.y_train), _ = tf.keras.datasets.mnist.load_data()
self.x_train = self.x_train.reshape(self.x_train.shape[0], 28, 28, 1)
self.x_train = self.x_train.astype('float32') / 255
self.y_train = tf.keras.utils.to_categorical(
self.y_train, self.num_classes)
def _build_model(self):
"""Model from https://github.com/keras-team/keras/blob/master/examples
/mnist_hierarchical_rnn.py."""
row, col, pixel = self.x_train.shape[1: ]
inputs = tf.keras.layers.Input(shape=(row, col, pixel))
encoded_rows = tf.keras.layers.TimeDistributed(
tf.keras.layers.LSTM(self.row_hidden))(inputs)
encoded_cols = tf.keras.layers.LSTM(
self.col_hidden)(encoded_rows)
outputs = tf.keras.layers.Dense(
self.num_classes, activation='softmax')(encoded_cols)
model = tf.keras.Model(inputs, outputs)
return model
# In each benchmark test, the required arguments for the
# method `measure_performance` include:
# x: Input data, it could be Numpy or loaded from tfds.
# y: Target data. If `x` is a dataset or generator instance,
# `y` should not be specified.
# loss: Loss function for model.
# optimizer: Optimizer for model.
# Check more details in `measure_performance()` method of
# benchmark_util.
def benchmark_hrnn_mnist_bs_256(self):
"""Measure performance with batch_size=256 and run_iters=4."""
batch_size = 256
run_iters = 4
metrics, wall_time, extras = benchmark_util.measure_performance(
self._build_model,
x=self.x_train,
y=self.y_train,
batch_size=batch_size,
run_iters=run_iters,
optimizer='rmsprop',
loss='categorical_crossentropy',
metrics=['accuracy'])
self.report_benchmark(
iters=run_iters,
wall_time=wall_time,
metrics=metrics,
extras=extras)
def benchmark_hrnn_mnist_bs_512(self):
"""Measure performance with batch_size=512 and run_iters=5."""
batch_size = 512
run_iters = 5
metrics, wall_time, extras = benchmark_util.measure_performance(
self._build_model,
x=self.x_train,
y=self.y_train,
batch_size=batch_size,
run_iters=run_iters,
optimizer='rmsprop',
loss='categorical_crossentropy',
metrics=['accuracy'])
self.report_benchmark(
iters=run_iters,
wall_time=wall_time,
metrics=metrics,
extras=extras)
def benchmark_hrnn_mnist_bs_1024(self):
"""Measure performance with batch_size=1024 and run_iters=3."""
batch_size = 1024
run_iters = 3
metrics, wall_time, extras = benchmark_util.measure_performance(
self._build_model,
x=self.x_train,
y=self.y_train,
batch_size=batch_size,
run_iters=run_iters,
optimizer='rmsprop',
loss='categorical_crossentropy',
metrics=['accuracy'])
self.report_benchmark(
iters=run_iters,
wall_time=wall_time,
metrics=metrics,
extras=extras)
if __name__ == '__main__':
tf.test.main()