aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/tools/common
diff options
context:
space:
mode:
authorGravatar Francois Chollet <fchollet@google.com>2018-08-08 15:12:17 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-08-08 15:16:04 -0700
commit60bb01f1a7871958646669863a289960231be374 (patch)
tree3ba21175b54a77f09ea290ab2a172ef58f4b7b57 /tensorflow/tools/common
parent8f283eaa394147437bb85aa81b375cc37cb9fab4 (diff)
Make tf.keras rely on external keras_applications and keras_preprocessing modules.
PiperOrigin-RevId: 207953769
Diffstat (limited to 'tensorflow/tools/common')
-rw-r--r--tensorflow/tools/common/public_api.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tensorflow/tools/common/public_api.py b/tensorflow/tools/common/public_api.py
index b40e4155df..09933d266b 100644
--- a/tensorflow/tools/common/public_api.py
+++ b/tensorflow/tools/common/public_api.py
@@ -70,6 +70,8 @@ class PublicAPIVisitor(object):
'tf.app': ['flags'],
# Imported for compatibility between py2/3.
'tf.test': ['mock'],
+ # Externalized modules of the Keras API.
+ 'tf.keras': ['applications', 'preprocessing']
}
@property