Seal the tf.layers interface.
Change: 140552119
This commit is contained in:
parent
7bdb867d2c
commit
07569510a0
@ -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
|
||||
|
@ -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
|
39
tensorflow/python/layers/layers.py
Normal file
39
tensorflow/python/layers/layers.py
Normal file
@ -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)
|
Loading…
Reference in New Issue
Block a user