DeepLearning
GetDefaultSession
get the default computation session
Calling Sequence
Description
Examples
Compatibility
GetDefaultSession()
The GetDefaultSession() command returns a Session object corresponding to the default session for the current thread.
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 GetDefaultSession(..) only after executing the command with(DeepLearning). However, it can always be accessed through the long form of the command by using DeepLearning[GetDefaultSession](..).
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≔GetDefaultSession⁡
sess:-Run⁡t1⁢t2
The DeepLearning[GetDefaultSession] command was introduced in Maple 2018.
For more information on Maple 2018 changes, see Updates in Maple 2018.
The DeepLearning[GetDefaultSession] command was updated in Maple 2021.
The option was updated in Maple 2021.
See Also
DeepLearning Overview
GetDefaultGraph
Download Help Document