aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/layers/__init__.py
diff options
context:
space:
mode:
authorGravatar Patrick Nguyen <drpng@google.com>2016-11-29 17:56:04 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-11-29 18:05:25 -0800
commit07569510a0c780fb3e296e3e319a1d8d784026ea (patch)
tree50609349602d3515219eac12ff4dac1ef1036203 /tensorflow/python/layers/__init__.py
parent7bdb867d2c4c9e15fffba487802af7b75ce2dae4 (diff)
Seal the tf.layers interface.
Change: 140552119
Diffstat (limited to 'tensorflow/python/layers/__init__.py')
-rw-r--r--tensorflow/python/layers/__init__.py32
1 files changed, 0 insertions, 32 deletions
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