W3cubDocs

/TensorFlow Python

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

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

See the guide: Constants, Sequences, and Random Values > Constant Value Tensors

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.

numpy compatibility

Equivalent to np.full

Defined in tensorflow/python/ops/gen_array_ops.py.

© 2017 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/api_docs/python/tf/fill