用法
save(
file_prefix, options=None
)
参数
-
file_prefix
用于检查点文件名的前缀 (/path/to/directory/and_a_prefix)。名称是根据此前缀和Checkpoint.save_counter
生成的。 -
options
可选的tf.train.CheckpointOptions
对象。
返回
- 检查点的完整路径。
保存训练检查点并提供基本检查点管理。
保存的检查点包括由该对象创建的变量以及在调用Checkpoint.save()
时它所依赖的任何可跟踪对象。
save
是围绕 write
方法的基本便利包装,使用 save_counter
顺序编号检查点并更新 tf.train.latest_checkpoint
使用的元数据。更高级的检查点管理,例如垃圾收集和自定义编号,可能由也包装 write
和 read
的其他实用程序提供。 (例如tf.train.CheckpointManager
)。
step = tf.Variable(0, name="step")
checkpoint = tf.Checkpoint(step=step)
checkpoint.save("/tmp/ckpt")
# Later, read the checkpoint with restore()
checkpoint.restore("/tmp/ckpt")
# You can also pass options to save() and restore(). For example this
# runs the IO ops on the localhost:
options = tf.CheckpointOptions(experimental_io_device="/job:localhost")
checkpoint.save("/tmp/ckpt", options=options)
# Later, read the checkpoint with restore()
checkpoint.restore("/tmp/ckpt", options=options)
相关用法
- Python tf.train.Checkpoint.restore用法及代码示例
- Python tf.train.Checkpoint.read用法及代码示例
- Python tf.train.Checkpoint.write用法及代码示例
- Python tf.train.CheckpointOptions用法及代码示例
- Python tf.train.CheckpointManager用法及代码示例
- Python tf.train.Checkpoint用法及代码示例
- Python tf.train.Coordinator.stop_on_exception用法及代码示例
- Python tf.train.ClusterSpec用法及代码示例
- Python tf.train.Coordinator用法及代码示例
- Python tf.train.ExponentialMovingAverage用法及代码示例
- Python tf.train.list_variables用法及代码示例
- Python tf.transpose用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.train.Checkpoint.save。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。