QUESTION
A developer is using the Sagemaker Python SDK and has just configured and fit a model.
Which of the following is true regarding completing deployment to a live endpoint using only the SageMaker console?
(Select One)
From Python SDK,
the estimator has been created – for example estimator=estimator.Estimator(algorithm-container…)
the estimator hyper parameters have been set – for example estimator.set_hyperparameters(max_depth…)
the estimator has been fit – for example estimator.fit({‘train’:training_config, ‘validation’:validation_config})
The model artifacts have been saved to S3, but there is no model, endpoint configuration in the SageMaker console (these need to be created) and no endpoint deployed.
estimator.deploy would created all of these and deploy the model via the SageMaker Python SDK, but this question is asking how this would be accomplished via the console. Hence the answer is, create model, created endpoint configuration, create endpoint. The model can be created from the training jobs area by clicking on the relevant job, or in models via reference of the model location in S3.
No responses yet