Reputation: 1010
In non-script mode for Sagemaker training jobs with Tensorflow, I was able to specify a checkpoint path in S3 with checkpoint_path
.
However, in script mode this parameter is disabled.
How can I start from most recent checkpoint for a Sagemaker Tensorflow training job in Script mode?
Upvotes: 1
Views: 379
Reputation: 513
with script mode, the parameter you're looking for is model_dir
docs: https://sagemaker.readthedocs.io/en/stable/using_tf.html#adapting-your-local-tensorflow-script
Upvotes: 1