Creates a tensor filled with a scalar value.
Aliases:
tf.compat.v1.fill
tf.compat.v2.fill
tf.fill(
dims,
value,
name=None
)
Used in the guide:
R
ag
ge
dt
e
ns
or
s``t
f.
da
ta
:B
u
il
dT
e
ns
or
Fl
ow
i
np
ut
p
ip
el
in
es
Used in the tutorials:
U
ni
co
de
s
tr
in
gs
This operation creates a tensor of shapedims
and fills it withvalue
.
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, whereastf.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 totf.constant
which embeds the entire Tensor into the graph with aConst
node.- Because
tf.fill
evaluates at graph runtime, it supports dynamic shapes based on other runtime Tensors, unliketf.constant
.
Args:
dims
: ATensor
. Must be one of the following types:int32
,int64
. 1-D. Represents the shape of the output tensor.value
: ATensor
. 0-D (scalar). Value to fill the returned tensor. @compatibility(numpy) Equivalent to np.full @end_compatibilityname
: Aname
for the operation (optional).
Returns:
A Tensor
. Has the same type as value
.