tf.contrib.eager.Saver
A tf.compat.v1.train.Saver adapter for use when eager execution is enabled.
tf.contrib.eager.Saver( var_list )
Saver
's name-based checkpointing strategy is fragile. Please switch to tf.train.Checkpoint
or tf.keras.Model.save_weights
, which perform a more robust object-based saving. These APIs will load checkpoints written by Saver
.
Args | |
---|---|
var_list | The list of variables that will be saved and restored. Either a list of tf.Variable objects, or a dictionary mapping names to tf.Variable objects. |
Raises | |
---|---|
RuntimeError | if invoked when eager execution has not been enabled. |
Methods
restore
restore( file_prefix )
Restores previously saved variables.
Args | |
---|---|
file_prefix | Path prefix where parameters were previously saved. Typically obtained from a previous save() call, or from tf.train.latest_checkpoint . |
save
save( file_prefix, global_step=None )
Saves variables.
Args | |
---|---|
file_prefix | Path prefix of files created for the checkpoint. |
global_step | If provided the global step number is appended to file_prefix to create the checkpoint filename. The optional argument can be a Tensor, a Variable, or an integer. |
Returns | |
---|---|
A string: prefix of filenames created for the checkpoint. This may be an extension of file_prefix that is suitable to pass as an argument to a subsequent call to restore() . |
© 2020 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/versions/r1.15/api_docs/python/tf/contrib/eager/Saver