"...text-generation-inference.git" did not exist on "e6888d0e87c21bf392b62938c75c07ec92d5fcb8"
Commit d70eca30 authored by Hongkun Yu's avatar Hongkun Yu Committed by A. Unique TensorFlower
Browse files

Move benchmark_wrappers to benchmark folder.

PiperOrigin-RevId: 306521269
parent 02cf1f87
# Lint as: python3 # Lint as: python3
# Copyright 2019 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.
# ==============================================================================
"""Utils to annotate and trace benchmarks.""" """Utils to annotate and trace benchmarks."""
from __future__ import absolute_import from __future__ import absolute_import
......
...@@ -34,7 +34,7 @@ from official.benchmark import bert_benchmark_utils as benchmark_utils ...@@ -34,7 +34,7 @@ from official.benchmark import bert_benchmark_utils as benchmark_utils
from official.nlp.bert import configs from official.nlp.bert import configs
from official.nlp.bert import run_classifier from official.nlp.bert import run_classifier
from official.utils.misc import distribution_utils from official.utils.misc import distribution_utils
from official.utils.testing import benchmark_wrappers from official.benchmark import benchmark_wrappers
# pylint: disable=line-too-long # pylint: disable=line-too-long
PRETRAINED_CHECKPOINT_PATH = 'gs://cloud-tpu-checkpoints/bert/keras_bert/uncased_L-24_H-1024_A-16/bert_model.ckpt' PRETRAINED_CHECKPOINT_PATH = 'gs://cloud-tpu-checkpoints/bert/keras_bert/uncased_L-24_H-1024_A-16/bert_model.ckpt'
......
...@@ -33,7 +33,7 @@ from official.benchmark import bert_benchmark_utils as benchmark_utils ...@@ -33,7 +33,7 @@ from official.benchmark import bert_benchmark_utils as benchmark_utils
from official.nlp.bert import run_squad from official.nlp.bert import run_squad
from official.utils.misc import distribution_utils from official.utils.misc import distribution_utils
from official.utils.misc import keras_utils from official.utils.misc import keras_utils
from official.utils.testing import benchmark_wrappers from official.benchmark import benchmark_wrappers
# pylint: disable=line-too-long # pylint: disable=line-too-long
......
...@@ -23,7 +23,7 @@ from absl import flags ...@@ -23,7 +23,7 @@ from absl import flags
import tensorflow as tf # pylint: disable=g-bad-import-order import tensorflow as tf # pylint: disable=g-bad-import-order
from official.benchmark import keras_benchmark from official.benchmark import keras_benchmark
from official.utils.testing import benchmark_wrappers from official.benchmark import benchmark_wrappers
from official.benchmark.models import resnet_cifar_main from official.benchmark.models import resnet_cifar_main
MIN_TOP_1_ACCURACY = 0.929 MIN_TOP_1_ACCURACY = 0.929
......
...@@ -26,8 +26,8 @@ from typing import Any, MutableMapping, Optional ...@@ -26,8 +26,8 @@ from typing import Any, MutableMapping, Optional
from absl import flags from absl import flags
import tensorflow as tf # pylint: disable=g-bad-import-order import tensorflow as tf # pylint: disable=g-bad-import-order
from official.benchmark import benchmark_wrappers
from official.benchmark import keras_benchmark from official.benchmark import keras_benchmark
from official.utils.testing import benchmark_wrappers
from official.vision.image_classification import classifier_trainer from official.vision.image_classification import classifier_trainer
from official.vision.image_classification.resnet import resnet_imagenet_main from official.vision.image_classification.resnet import resnet_imagenet_main
......
...@@ -24,11 +24,10 @@ from absl import flags ...@@ -24,11 +24,10 @@ from absl import flags
from absl import logging from absl import logging
from absl.testing import flagsaver from absl.testing import flagsaver
import tensorflow as tf import tensorflow as tf
from official.benchmark import benchmark_wrappers
from official.recommendation import ncf_common from official.recommendation import ncf_common
from official.recommendation import ncf_keras_main from official.recommendation import ncf_keras_main
from official.utils.flags import core from official.utils.flags import core
from official.utils.testing import benchmark_wrappers
FLAGS = flags.FLAGS FLAGS = flags.FLAGS
NCF_DATA_DIR_NAME = 'movielens_data' NCF_DATA_DIR_NAME = 'movielens_data'
......
...@@ -25,7 +25,7 @@ import tensorflow as tf ...@@ -25,7 +25,7 @@ import tensorflow as tf
from official.vision.image_classification.resnet import common from official.vision.image_classification.resnet import common
from official.vision.image_classification.resnet import resnet_ctl_imagenet_main from official.vision.image_classification.resnet import resnet_ctl_imagenet_main
from official.benchmark.perfzero_benchmark import PerfZeroBenchmark from official.benchmark.perfzero_benchmark import PerfZeroBenchmark
from official.utils.testing import benchmark_wrappers from official.benchmark import benchmark_wrappers
from official.utils.flags import core as flags_core from official.utils.flags import core as flags_core
MIN_TOP_1_ACCURACY = 0.76 MIN_TOP_1_ACCURACY = 0.76
......
...@@ -32,7 +32,7 @@ import tensorflow as tf ...@@ -32,7 +32,7 @@ import tensorflow as tf
from official.benchmark import bert_benchmark_utils as benchmark_utils from official.benchmark import bert_benchmark_utils as benchmark_utils
from official.utils.flags import core as flags_core from official.utils.flags import core as flags_core
from official.utils.testing import benchmark_wrappers from official.benchmark import benchmark_wrappers
from official.vision.detection import main as detection from official.vision.detection import main as detection
TMP_DIR = os.getenv('TMPDIR') TMP_DIR = os.getenv('TMPDIR')
......
...@@ -26,7 +26,7 @@ import tensorflow as tf # pylint: disable=g-bad-import-order ...@@ -26,7 +26,7 @@ import tensorflow as tf # pylint: disable=g-bad-import-order
from official.benchmark.models.shakespeare import shakespeare_main from official.benchmark.models.shakespeare import shakespeare_main
from official.utils.flags import core as flags_core from official.utils.flags import core as flags_core
from official.utils.misc import keras_utils from official.utils.misc import keras_utils
from official.utils.testing import benchmark_wrappers from official.benchmark import benchmark_wrappers
from official.benchmark.perfzero_benchmark import PerfZeroBenchmark from official.benchmark.perfzero_benchmark import PerfZeroBenchmark
SHAKESPEARE_TRAIN_DATA = 'shakespeare/shakespeare.txt' SHAKESPEARE_TRAIN_DATA = 'shakespeare/shakespeare.txt'
......
...@@ -22,11 +22,11 @@ import time ...@@ -22,11 +22,11 @@ import time
from absl import flags from absl import flags
import tensorflow as tf import tensorflow as tf
from official.benchmark import benchmark_wrappers
from official.benchmark.perfzero_benchmark import PerfZeroBenchmark from official.benchmark.perfzero_benchmark import PerfZeroBenchmark
from official.nlp.transformer import misc from official.nlp.transformer import misc
from official.nlp.transformer import transformer_main as transformer_main from official.nlp.transformer import transformer_main as transformer_main
from official.utils.flags import core as flags_core from official.utils.flags import core as flags_core
from official.utils.testing import benchmark_wrappers
TRANSFORMER_EN2DE_DATA_DIR_NAME = 'wmt32k-en2de-official' TRANSFORMER_EN2DE_DATA_DIR_NAME = 'wmt32k-en2de-official'
EN2DE_2014_BLEU_DATA_DIR_NAME = 'newstest2014' EN2DE_2014_BLEU_DATA_DIR_NAME = 'newstest2014'
......
...@@ -31,7 +31,7 @@ import tensorflow as tf ...@@ -31,7 +31,7 @@ import tensorflow as tf
from official.benchmark import bert_benchmark_utils as benchmark_utils from official.benchmark import bert_benchmark_utils as benchmark_utils
from official.nlp.xlnet import run_classifier from official.nlp.xlnet import run_classifier
from official.nlp.xlnet import run_squad from official.nlp.xlnet import run_squad
from official.utils.testing import benchmark_wrappers from official.benchmark import benchmark_wrappers
# pylint: disable=line-too-long # pylint: disable=line-too-long
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment