You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
is it possible to generate multiple checkpoint files at specified intervals?
say for example, if the training iteration is 2000, can we generate separate checkpoint files for every 500 iterations or at 1000th and 2000th?
if its possible, please help me with the ways to do.
Thank you in advance.
The text was updated successfully, but these errors were encountered:
When a (TensorFlow) checkpoint is stored, the current weights are saved. If they aren't saved in a checkpoint, there's no way to get them back at a later time. You can only set a time interval for checkpoints in the Luminoth config file.
See base_config.yml for possible configurations (importantly the two options below):
# The frequency, in seconds, that a checkpoint is saved.
save_checkpoint_secs: 600
# The maximum number of checkpoints to keep
checkpoints_max_keep: 1
is it possible to generate multiple checkpoint files at specified intervals?
say for example, if the training iteration is 2000, can we generate separate checkpoint files for every 500 iterations or at 1000th and 2000th?
if its possible, please help me with the ways to do.
Thank you in advance.
The text was updated successfully, but these errors were encountered: