Fixes GitHub

PiperOrigin-RevId: 340966857
Change-Id: Ia743be87b1b68577556f2fbf8d760919653d5916
This commit is contained in:
A. Unique TensorFlower 2020-11-05 18:34:05 -08:00 committed by TensorFlower Gardener
parent f8b8815acd
commit b8f51ce323
2 changed files with 4 additions and 4 deletions
tensorflow/python/keras/engine

View File

@ -2080,7 +2080,7 @@ class Layer(module.Module, version_utils.LayerVersionSelector):
node_index: Integer, index of the node
from which to retrieve the attribute.
E.g. `node_index=0` will correspond to the
first time the layer was called.
first input node of the layer.
Returns:
A tensor (or list of tensors if the layer has multiple inputs).
@ -2099,7 +2099,7 @@ class Layer(module.Module, version_utils.LayerVersionSelector):
node_index: Integer, index of the node
from which to retrieve the attribute.
E.g. `node_index=0` will correspond to the
first time the layer was called.
first output node of the layer.
Returns:
A tensor (or list of tensors if the layer has multiple outputs).

View File

@ -1510,7 +1510,7 @@ class Layer(base_layer.Layer):
node_index: Integer, index of the node
from which to retrieve the attribute.
E.g. `node_index=0` will correspond to the
first time the layer was called.
first input node of the layer.
Returns:
A tensor (or list of tensors if the layer has multiple inputs).
@ -1528,7 +1528,7 @@ class Layer(base_layer.Layer):
node_index: Integer, index of the node
from which to retrieve the attribute.
E.g. `node_index=0` will correspond to the
first time the layer was called.
first output node of the layer.
Returns:
A tensor (or list of tensors if the layer has multiple outputs).