用法
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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。