aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--tensorflow/contrib/layers/__init__.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/tensorflow/contrib/layers/__init__.py b/tensorflow/contrib/layers/__init__.py
index 57debbc148..b7832be73f 100644
--- a/tensorflow/contrib/layers/__init__.py
+++ b/tensorflow/contrib/layers/__init__.py
@@ -33,12 +33,14 @@ common machine learning algorithms.
@@repeat
@@safe_embedding_lookup_sparse
@@separable_convolution2d
-@@stack
@@unit_norm
Aliases for fully_connected which set a default activation function are
available: `relu`, `relu6` and `linear`.
+`stack` operation is also available. It builds a stack of layers by applying
+a layer repeatedly.
+
## Regularizers
Regularization can help prevent overfitting. These have the signature
@@ -118,4 +120,8 @@ from tensorflow.contrib.layers.python.ops import sparse_ops
from tensorflow.python.util.all_util import make_all
# pylint: enable=unused-import,wildcard-import
+
+# Note: `stack` operation is available, just excluded from the document above
+# due to collision with tf.stack.
+
__all__ = make_all(__name__)