aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--tensorflow/python/__init__.py2
-rw-r--r--tensorflow/python/layers/__init__.py32
-rw-r--r--tensorflow/python/layers/layers.py39
3 files changed, 40 insertions, 33 deletions
diff --git a/tensorflow/python/__init__.py b/tensorflow/python/__init__.py
index ae8d0e02f1..2a7a76c396 100644
--- a/tensorflow/python/__init__.py
+++ b/tensorflow/python/__init__.py
@@ -82,7 +82,7 @@ from tensorflow.python.ops.standard_ops import *
# pylint: enable=wildcard-import
# Bring in subpackages.
-from tensorflow.python import layers
+from tensorflow.python.layers import layers
from tensorflow.python.ops import nn
from tensorflow.python.ops import resources
from tensorflow.python.ops import sdca_ops as sdca
diff --git a/tensorflow/python/layers/__init__.py b/tensorflow/python/layers/__init__.py
index e0e7658513..e69de29bb2 100644
--- a/tensorflow/python/layers/__init__.py
+++ b/tensorflow/python/layers/__init__.py
@@ -1,32 +0,0 @@
-# Copyright 2015 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.
-# ==============================================================================
-
-# pylint: disable=line-too-long
-"""This library provides a set of high-level neural networks layers.
-
-## Core layers
-
-@@fully_connected
-
-"""
-
-from __future__ import absolute_import
-from __future__ import division
-from __future__ import print_function
-
-# pylint: disable=g-bad-import-order,unused-import
-
-# Core layers.
-from tensorflow.python.layers.core import fully_connected
diff --git a/tensorflow/python/layers/layers.py b/tensorflow/python/layers/layers.py
new file mode 100644
index 0000000000..1466487164
--- /dev/null
+++ b/tensorflow/python/layers/layers.py
@@ -0,0 +1,39 @@
+# Copyright 2015 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.
+# ==============================================================================
+
+# pylint: disable=line-too-long
+"""This library provides a set of high-level neural networks layers.
+
+## Core layers
+
+@@fully_connected
+
+"""
+
+from __future__ import absolute_import
+from __future__ import division
+from __future__ import print_function
+
+from tensorflow.python.util.all_util import remove_undocumented
+
+# pylint: disable=g-bad-import-order,unused-import
+
+# Core layers.
+from tensorflow.python.layers.core import fully_connected
+# pylint: enable=g-bad-import-order,unused-import
+
+_allowed_symbols = []
+
+remove_undocumented(__name__, _allowed_symbols)