aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/layers
diff options
context:
space:
mode:
authorGravatar josephyearsley <joggino23@gmail.com>2018-03-18 22:01:21 +0000
committerGravatar Joe Yearsley <josephelliotyearsley@gmail.com>2018-09-29 17:31:57 +0100
commit76964f315f7c52d63ce6578d87278a96c7394ece (patch)
treef95720a4b30125790e7103c5afac22454866bef1 /tensorflow/python/layers
parent579aecd2de1f0582858f83e3c8da2a8dbb57993b (diff)
pylint compliance
Diffstat (limited to 'tensorflow/python/layers')
-rw-r--r--tensorflow/python/layers/core.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tensorflow/python/layers/core.py b/tensorflow/python/layers/core.py
index 5f89e3c0c3..5919fa543e 100644
--- a/tensorflow/python/layers/core.py
+++ b/tensorflow/python/layers/core.py
@@ -268,14 +268,14 @@ def dropout(inputs,
@tf_export('layers.Flatten')
class Flatten(keras_layers.Flatten, base.Layer):
"""Flattens an input tensor while preserving the batch axis (axis 0).
-
+
Arguments:
data_format: A string, one of `channels_last` (default) or `channels_first`.
The ordering of the dimensions in the inputs.
`channels_last` corresponds to inputs with shape
`(batch, ..., channels)` while `channels_first` corresponds to
inputs with shape `(batch, channels, ...)`.
-
+
Examples:
```