Reputation: 9
I have trained an object detection model on AWS Sagemaker. I want to use this model locally in my machine. I downloaded this model which consist of 3 files hyperparams.json, model-symbol.json, and model-0000.params. I have seen plenty of tutorials to deploy object classification model locally but didn’t get any for object detection.
Upvotes: 0
Views: 369
Reputation: 56
As NRauschmayr mentioned it can be convenient to use SageMaker's Python SDK local mode feature if you are also using it to train on SageMaker. One slight correction is that you would be setting the instance_type of the predictor to 'local' since you are interested in local deployment. You can read more about local mode here: https://sagemaker.readthedocs.io/en/stable/overview.html#local-mode
Upvotes: 1
Reputation: 131
There are different possibilities:
mxnet-model-server --models mymodel=mymodel.mar
Upvotes: 1