description: Creates a tensor filled with a scalar value.

robots: noindex

tf.raw_ops.Fill

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]]

tf.fill differs from tf.constant in a few ways:

dims A Tensor. Must be one of the following types: int32, int64. 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).

A Tensor. Has the same type as value.

Numpy Compatibility

Equivalent to np.full