DeepLearning
Variable
create a Tensor Variable
Calling Sequence
Parameters
Options
Description
Examples
Compatibility
Variable(val, opts)
val
-
list, Matrix, Vector, Array, DataFrame, or DataSeries; initial values
opts
(optional) zero or more options as specified below
datatype = one of string, truefalse, integer[4], integer[8], float[4], float[8], complex[4], or complex[8]
Specifies the type of data this Tensor will hold. By default, the datatype is inferred from the initial data val.
name = string
Specifies an optional name for this Tensor to be displayed in output.
trainable = truefalse
Specifies whether GradientTapes should watch this Variable automatically. The default is true.
The Variable(val,opts) command creates a Tensor variable in the active dataflow graph with initial value given by val.
This function is part of the DeepLearning package, so it can be used in the short form Variable(..) only after executing the command with(DeepLearning). However, it can always be accessed through the long form of the command by using DeepLearning[Variable](..).
with⁡DeepLearning:
V≔Variable⁡2.0,datatype=float8
V≔DeepLearning VariableName: Variable:0Shape: [1]Data Type: float[8]
The DeepLearning[Variable] command was introduced in Maple 2018.
For more information on Maple 2018 changes, see Updates in Maple 2018.
The DeepLearning[Variable] command was updated in Maple 2022.
The trainable option was introduced in Maple 2022.
For more information on Maple 2022 changes, see Updates in Maple 2022.
See Also
DeepLearning Overview
Download Help Document