google-research

Форк
0
43 строки · 1.4 Кб
1
# coding=utf-8
2
# Copyright 2024 The Google Research Authors.
3
#
4
# Licensed under the Apache License, Version 2.0 (the "License");
5
# you may not use this file except in compliance with the License.
6
# You may obtain a copy of the License at
7
#
8
#     http://www.apache.org/licenses/LICENSE-2.0
9
#
10
# Unless required by applicable law or agreed to in writing, software
11
# distributed under the License is distributed on an "AS IS" BASIS,
12
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
# See the License for the specific language governing permissions and
14
# limitations under the License.
15

16
"""Tests for learning.brain.research.deep_calibration.v2.criteo.run_train."""
17

18
from __future__ import absolute_import
19
from __future__ import division
20
from __future__ import print_function
21

22
import tempfile
23

24
from absl.testing import absltest
25
from absl.testing import parameterized
26
import tensorflow.compat.v2 as tf
27

28
from uq_benchmark_2019.criteo import models_lib
29
from uq_benchmark_2019.criteo import run_train
30

31

32
class RunTrainTest(parameterized.TestCase):
33

34
  @parameterized.named_parameters(*[(m, m) for m in models_lib.METHODS])
35
  def test_run_train(self, method):
36
    with tempfile.TemporaryDirectory() as model_dir:
37
      run_train.run(method, model_dir,
38
                    num_epochs=1, fake_data=True, fake_training=True)
39

40

41
if __name__ == '__main__':
42
  tf.enable_v2_behavior()
43
  absltest.main()
44

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.