-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Description
What did you find confusing? Please describe.
I am trying to retrain a SKLearn
estimator in SageMaker, then redeploy it to an existing inference endpoint. However, the update_endpoint=True
option in the Estimator.deploy()
function has been deprecated, and it isn't immediately clear how one would accomplish it from the Predictor.update_endpoint()
function
Describe how documentation can be improved
This entry seems to be the most recent announcement for the deprecation, but the documentation page that it points to doesn't give a good description of how one would update the endpoint given the
Additional context
I managed to update the existing endpoint with a new model from the solution described in #58, but I was hoping that there would be an easier way to reference the new model.