tf.fill(dims, value, name=None)
Creates a tensor filled with a scalar value.
This operation creates a tensor of shape dims
and fills it with value
.
For example:
# Output tensor has shape [2, 3]. fill([2, 3], 9) ==> [[9, 9, 9] [9, 9, 9]]
Args:
-
dims
: ATensor
of typeint32
. 1-D. Represents the shape of the output tensor. -
value
: ATensor
. 0-D (scalar). Value to fill the returned tensor. -
name
: A name for the operation (optional).
Returns:
A Tensor
. Has the same type as value
.
Please login to continue.