"tests/test_models/test_parta2.py" did not exist on "f9ebc59b1e77c462063c1edf6f7781484d43ddfd"
integration.py 1.92 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Copyright 2018 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.
# ==============================================================================
"""Helper code to run complete models from within python.
"""

from __future__ import absolute_import
from __future__ import division
from __future__ import print_function

import os
import shutil
import sys
25
import tempfile
26

27
28
29
30
from absl import flags

from official.utils.flags import core as flags_core

31

32
def run_synthetic(main, tmp_root, extra_flags=None, synth=True):
33
34
35
36
37
38
  """Performs a minimal run of a model.

    This function is intended to test for syntax errors throughout a model. A
  very limited run is performed using synthetic data.

  Args:
Karmel Allison's avatar
Karmel Allison committed
39
    main: The primary function used to exercise a code path. Generally this
40
      function is "<MODULE>.main(argv)".
41
    tmp_root: Root path for the temp directory created by the test class.
Karmel Allison's avatar
Karmel Allison committed
42
    extra_flags: Additional flags passed by the caller of this function.
43
    synth: Use synthetic data.
44
45
46
47
  """

  extra_flags = [] if extra_flags is None else extra_flags

48
  model_dir = tempfile.mkdtemp(dir=tmp_root)
49
50

  args = [sys.argv[0], "--model_dir", model_dir, "--train_epochs", "1",
51
52
53
54
55
          "--epochs_between_evals", "1"] + extra_flags

  if synth:
    args.append("--use_synthetic_data")

56
  try:
57
58
    flags_core.parse_flags(argv=args)
    main(flags.FLAGS)
59
60
61
  finally:
    if os.path.exists(model_dir):
      shutil.rmtree(model_dir)