tf.fill

View source on GitHub

Creates a tensor filled with a scalar value.

tf.fill(
    dims, value, name=None
)

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:

Args:

Returns:

A Tensor. Has the same type as value.