aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/layers/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/python/layers/base.py')
-rw-r--r--tensorflow/python/layers/base.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/tensorflow/python/layers/base.py b/tensorflow/python/layers/base.py
index abbe9d0c56..b8969a41ab 100644
--- a/tensorflow/python/layers/base.py
+++ b/tensorflow/python/layers/base.py
@@ -43,15 +43,13 @@ class Layer(base_layer.Layer):
Arguments:
trainable: Boolean, whether the layer's variables should be trainable.
name: String name of the layer.
- dtype: Default dtype of the layer's weights and computations (default of
- `None` means use the type of the first input). If not None, inputs will be
- casted to this dtype.
+ dtype: Default dtype of the layer's weights (default of `None` means use the
+ type of the first input).
Read-only properties:
name: The name of the layer (string).
- dtype: Default dtype of the layer's weights and computations. (default of
- `None` means use the type of the first input). If not None, inputs will be
- casted to this dtype.
+ dtype: Default dtype of the layer's weights (default of `None` means use the
+ type of the first input).
trainable_variables: List of trainable variables.
non_trainable_variables: List of non-trainable variables.
variables: List of all variables of this layer, trainable and