DeepLearning
ResetDefaultGraph
get the default computation session
Calling Sequence
Description
Examples
Compatibility
ResetDefaultGraph()
The ResetDefaultGraph() command closes the current default Session and resets the global default graph.
Using any Session or Tensor objects previously defined after invoking ResetDefaultGraph() will result in undefined behavior.
Note that this command requires that eager execution be turned off beforehand using the SetEagerExecution command.
This function is part of the DeepLearning package, so it can be used in the short form ResetDefaultGraph(..) only after executing the command with(DeepLearning). However, it can always be accessed through the long form of the command by using DeepLearning[ResetDefaultGraph]().
After this reset, t1 and t2 will no longer be defined.
with⁡DeepLearning:
SetEagerExecution⁡false
true
t1≔Tensor⁡1.5,2.0
t1≔DeepLearning TensorName: Const:0Shape: [2]Data Type: float[4]
t2≔Tensor⁡2.5,6.0
t2≔DeepLearning TensorName: Const_1:0Shape: [2]Data Type: float[4]
sess≔ResetDefaultGraph⁡
The DeepLearning[ResetDefaultGraph] command was introduced in Maple 2018.
For more information on Maple 2018 changes, see Updates in Maple 2018.
The DeepLearning[ResetDefaultGraph] command was updated in Maple 2021.
The option was updated in Maple 2021.
See Also
DeepLearning Overview
Download Help Document