tf.fill()

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 as value.

doc_TensorFlow
2016-10-14 13:07:47
Comments
Leave a Comment

Please login to continue.