#include <array_ops.h>
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:
tf.fill only supports scalar contents, whereas tf.constant supports Tensor values.tf.fill creates an Op in the computation graph that constructs the actual Tensor value at runtime. This is in contrast to tf.constant which embeds the entire Tensor into the graph with a Const node.tf.fill evaluates at graph runtime, it supports dynamic shapes based on other runtime Tensors, unlike tf.constant.Arguments:
(numpy) Equivalent to np.full
Returns:
Output: The output tensor. | Constructors and Destructors | |
|---|---|
Fill(const ::tensorflow::Scope & scope, ::tensorflow::Input dims, ::tensorflow::Input value) |
| Public attributes | |
|---|---|
operation | |
output | |
| Public functions | |
|---|---|
node() const | ::tensorflow::Node * |
operator::tensorflow::Input() const | |
operator::tensorflow::Output() const | |
Operation operation
::tensorflow::Output output
Fill( const ::tensorflow::Scope & scope, ::tensorflow::Input dims, ::tensorflow::Input value )
::tensorflow::Node * node() const
operator::tensorflow::Input() const
operator::tensorflow::Output() const
© 2020 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 4.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/versions/r2.4/api_docs/cc/class/tensorflow/ops/fill