|
Calling Sequence
|
|
Fill(shape,val,opts)
Ones(shape,opts)
Ones(t,opts)
Zeros(shape,opts)
Zeros(t,opts)
|
|
Parameters
|
|
val
|
-
|
numeric quantity
|
shape
|
-
|
list, dimensions of the output Tensor
|
t
|
-
|
Tensor
|
opts
|
-
|
(optional) options as specified below
|
|
|
|
|
Options
|
|
•
|
datatype=one of string,truefalse,integer[4],integer[8],float[4],float[8],complex[4], or complex[8]
|
|
The value of option datatype specifies the type of data this Tensor will hold. If a Tensor t was provided as input, the default value of datatype is the datatype of t; otherwise, the default is float[4].
|
|
The value of option name specifies an optional name for this Tensor, to be displayed in output and when visualizing the dataflow graph.
|
|
|
Description
|
|
•
|
The Fill(shape,val,opts) command creates a Tensor in the active dataflow graph with shape shape filled with the scalar value val.
|
•
|
The Ones(shape,opts) and Zeros(shape,opts) commands behave similarly but create Tensors whose whose entries are 1 and 0, respectively. If x is a Tensor, the val of the resulting Tensor matches x.
|
•
|
If t is a Tensor, the commands Ones(t,opts) and Zeros(t,opts) create Tensors whose whose shape is identical to t but whose entries are 1 and 0, respectively.
|
•
|
These functions are part of the DeepLearning package, so they can can be used in the short form Fill(..) only after executing the command with(DeepLearning). However, can always be accessed through the long form of the command by using DeepLearning[Fill](..).
|
|
|
Examples
|
|
>
|
|
>
|
|
| (1) |
| (2) |
>
|
|
| (3) |
|
|
Compatibility
|
|
•
|
The DeepLearning[Fill], DeepLearning[Ones] and DeepLearning[Zeros] commands were introduced in Maple 2018.
|
|
|
|