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: A Tensor of type int32. 1-D. Represents the shape of the output tensor.
value: A Tensor. 0-D (scalar). Value to fill the returned tensor.
name: A name for the operation (optional).
Returns:
A Tensor. Has the same type a