DeepLearning
Restore
save and restore sessions
Save
Calling Sequence
Parameters
Description
Details
Examples
Compatibility
Restore(path)
Save(path)
path
-
string; path to checkpoint file
The Restore(path) command loads a saved computation session to memory from a checkpoint file located at path.
The Save(path) command saves a computation session in memory to a checkpoint file located at path.
These functions are part of the DeepLearning package, so they can be used in the short form Restore(..) and Save(..) only after executing the command with(DeepLearning). However, they can always be accessed through the long form of the command by using DeepLearning[Restore](..) or DeepLearning[Save](..).
For more information about saving models, see the TensorFlow Python API documentation for saved models.
Examples of Einstein summation on vectors
with⁡DeepLearning:
v≔Variable⁡1.0,0.5,datatype=float8
v≔DeepLearning TensorName: Variable:0Shape: [2]Data Type: float[8]
c≔Constant⁡1.5,3.0,datatype=float8
c≔DeepLearning TensorName: Const:0Shape: [2]Data Type: float[8]
AssignAdd⁡v,c
DeepLearning TensorName: AssignAdd:0Shape: [2]Data Type: float[8]
sess≔GetDefaultSession⁡
sess≔DeepLearning Session<tensorflow.python.client.session.InteractiveSession object at 0x7f44d3804350>
sess:-Run⁡VariablesInitializer⁡
Python:−None
Save⁡/tmp/model.ckpt
Restore⁡/tmp/model.ckpt
The DeepLearning[Restore] and DeepLearning[Save] commands were introduced in Maple 2018.
For more information on Maple 2018 changes, see Updates in Maple 2018.
See Also
DeepLearning Overview
Download Help Document
What kind of issue would you like to report? (Optional)