Add __init__.py in keras/distribute directory.

PiperOrigin-RevId: 242800284
This commit is contained in:
Rick Chao 2019-04-09 21:40:39 -07:00 committed by TensorFlower Gardener
parent 17182aece1
commit 14c1f39d38
2 changed files with 21 additions and 0 deletions

View File

@ -13,6 +13,7 @@ exports_files(["LICENSE"])
py_library(
name = "distribute",
srcs = [
"__init__.py",
"distributed_training_utils.py",
],
srcs_version = "PY2AND3",
@ -329,6 +330,7 @@ cuda_py_test(
name = "multi_worker_callback_test",
srcs = ["multi_worker_callback_test.py"],
additional_deps = [
":distribute",
":multi_worker_test_main_lib",
"//tensorflow/python:platform",
"//tensorflow/python/distribute:collective_all_reduce_strategy",

View File

@ -0,0 +1,19 @@
# 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.
# ==============================================================================
"""Keras' Distribution Strategy library."""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function