We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66c9f92 commit 168f8f2Copy full SHA for 168f8f2
src/sagemaker_mxnet_serving_container/handler_service.py
@@ -81,7 +81,8 @@ def initialize(self, context):
81
try:
82
self._service = self._user_module_transformer(model_dir)
83
except ValueError as e:
84
- logging.error(f"Error determining model. {str(e)}. For non-mxnet models, consider using pytorch-inference DLC that leverages TorchServe.")
85
- raise
+ logging.error(f"Error determining model. {str(e)}. "
+ "For non-mxnet models, consider using pytorch-inference DLC that leverages TorchServe.")
86
+ raise
87
88
super(HandlerService, self).initialize(context)
0 commit comments