File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ def tf_training_job(sagemaker_session, tf_full_version):
38
38
framework_version = tf_full_version ,
39
39
training_steps = 1 ,
40
40
evaluation_steps = 1 ,
41
+ checkpoint_path = '/opt/ml/model' ,
41
42
hyperparameters = {'input_tensor_name' : 'inputs' },
42
43
train_instance_count = 1 ,
43
44
train_instance_type = 'ml.c4.xlarge' ,
@@ -114,6 +115,7 @@ def test_tf_async(sagemaker_session):
114
115
role = 'SageMakerRole' ,
115
116
training_steps = 1 ,
116
117
evaluation_steps = 1 ,
118
+ checkpoint_path = '/opt/ml/model' ,
117
119
hyperparameters = {'input_tensor_name' : 'inputs' },
118
120
train_instance_count = 1 ,
119
121
train_instance_type = 'ml.c4.xlarge' ,
@@ -156,6 +158,7 @@ def test_tf_vpc_multi(sagemaker_session, tf_full_version):
156
158
framework_version = tf_full_version ,
157
159
training_steps = 1 ,
158
160
evaluation_steps = 1 ,
161
+ checkpoint_path = '/opt/ml/model' ,
159
162
hyperparameters = {'input_tensor_name' : 'inputs' },
160
163
train_instance_count = instance_count ,
161
164
train_instance_type = instance_type ,
You can’t perform that action at this time.
0 commit comments