File tree 1 file changed +3
-3
lines changed
src/sagemaker_tensorflow_container 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -169,18 +169,18 @@ def _log_model_missing_warning(model_dir):
169
169
pb_file_exists = True
170
170
path , direct_parent_dir = os .path .split (dirpath )
171
171
if not str .isdigit (direct_parent_dir ):
172
- logger .warn ('Your model will NOT be servable with SageMaker TensorFlow Serving containers.'
172
+ logger .warn ('Your model will NOT be servable with SageMaker TensorFlow Serving containers. '
173
173
'The SavedModel bundle is under directory \" {}\" , not a numeric name.'
174
174
.format (direct_parent_dir ))
175
175
176
176
if not file_exists :
177
177
logger .warn ('No model artifact is saved under path {}.'
178
178
' Your training job will not save any model files to S3.\n '
179
179
'For details of how to construct your training script see:\n '
180
- 'https://github.com/aws/sagemaker-python-sdk/tree/master/src/sagemaker/tensorflow #adapting-your-local-tensorflow-script' # noqa
180
+ 'https://sagemaker.readthedocs.io/en/stable/using_tf.html #adapting-your-local-tensorflow-script'
181
181
.format (model_dir ))
182
182
elif not pb_file_exists :
183
- logger .warn ('Your model will NOT be servable with SageMaker TensorFlow Serving container.'
183
+ logger .warn ('Your model will NOT be servable with SageMaker TensorFlow Serving container. '
184
184
'The model artifact was not saved in the TensorFlow SavedModel directory structure:\n '
185
185
'https://www.tensorflow.org/guide/saved_model#structure_of_a_savedmodel_directory' )
186
186
You can’t perform that action at this time.
0 commit comments