-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add TF MNIST classification cost benchmark (#33391)
* Add TF MNIST classification cost benchmark * linting * Generalize to single workflow file for cost benchmarks * fix incorrect UTC time in comment * move wordcount to same workflow * update workflow job name
- Loading branch information
1 parent
8e1e124
commit 0e37501
Showing
3 changed files
with
91 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
.github/workflows/cost-benchmarks-pipeline-options/python_tf_mnist_classification.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you 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. | ||
|
||
--region=us-central1 | ||
--machine_type=n1-standard-2 | ||
--num_workers=1 | ||
--disk_size_gb=50 | ||
--autoscaling_algorithm=NONE | ||
--input_options={} | ||
--staging_location=gs://temp-storage-for-perf-tests/loadtests | ||
--temp_location=gs://temp-storage-for-perf-tests/loadtests | ||
--requirements_file=apache_beam/ml/inference/tensorflow_tests_requirements.txt | ||
--publish_to_big_query=true | ||
--metrics_dataset=beam_run_inference | ||
--metrics_table=tf_mnist_classification | ||
--runner=DataflowRunner |
41 changes: 41 additions & 0 deletions
41
...pache_beam/testing/benchmarks/inference/tensorflow_mnist_classification_cost_benchmark.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# | ||
# Licensed to the Apache Software Foundation (ASF) under one or more | ||
# contributor license agreements. See the NOTICE file distributed with | ||
# this work for additional information regarding copyright ownership. | ||
# The ASF licenses this file to You 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. | ||
# | ||
# pytype: skip-file | ||
|
||
import logging | ||
|
||
from apache_beam.examples.inference import tensorflow_mnist_classification | ||
from apache_beam.testing.load_tests.dataflow_cost_benchmark import DataflowCostBenchmark | ||
|
||
|
||
class TensorflowMNISTClassificationCostBenchmark(DataflowCostBenchmark): | ||
def __init__(self): | ||
super().__init__() | ||
|
||
def test(self): | ||
extra_opts = {} | ||
extra_opts['input'] = self.pipeline.get_option('input_file') | ||
extra_opts['output'] = self.pipeline.get_option('output_file') | ||
extra_opts['model_path'] = self.pipeline.get_option('model') | ||
tensorflow_mnist_classification.run( | ||
self.pipeline.get_full_options_as_args(**extra_opts), | ||
save_main_session=False) | ||
|
||
|
||
if __name__ == '__main__': | ||
logging.basicConfig(level=logging.INFO) | ||
TensorflowMNISTClassificationCostBenchmark().run() |