You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The ``image`` parameter has been renamed to ``image_uri`` for specifying a custom Docker image URI to use with inference.
167
+
168
+
Predictors
169
+
----------
170
+
171
+
``sagemaker.predictor.RealTimePredictor`` has been renamed to :class:`sagemaker.predictor.Predictor`.
172
+
173
+
In addition, for :class:`sagemaker.predictor.Predictor`, :class:`sagemaker.sparkml.model.SparkMLPredictor`,
174
+
and predictors for Amazon algorithm (e.g. Factorization Machines, Linear Learner, etc.),
175
+
the ``endpoint`` attribute has been renamed to ``endpoint_name``.
176
+
177
+
Airflow
178
+
-------
179
+
180
+
For :func:`sagemaker.workflow.airflow.model_config` and :func:`sagemaker.workflow.airflow.model_config_from_estimator`,
181
+
``instance_type`` is no longer the first positional argument and is now an optional keyword argument.
182
+
183
+
For :func:`sagemaker.workflow.airflow.model_config`, :func:`sagemaker.workflow.airflow.model_config_from_estimator`, and
184
+
:func:`sagemaker.workflow.airflow.transform_config_from_estimator`, the ``image`` argument has been renamed to ``image_uri``.
185
+
99
186
Dependency Changes
100
187
==================
101
188
@@ -170,3 +257,12 @@ If you are using the ``sagemaker.tensorflow.serving.Model`` class, the tool does
170
257
-------------------------
171
258
172
259
If you are using the :class:`sagemaker.model.Model` class, the tool does not take care of switching the order between ``model_data`` and ``image_uri`` (formerly ``image``).
260
+
261
+
``update_endpoint`` and ``delete_endpoint``
262
+
-------------------------------------------
263
+
264
+
The tool does not take care of removing the ``update_endpoint`` argument from a ``deploy`` call.
265
+
If you are using that argument, please modify your code to use :func:`sagemaker.predictor.Predictor.update_endpoint` instead.
266
+
267
+
The tool also does not handle ``delete_endpoint`` calls on estimators or ``HyperparameterTuner``.
268
+
If you are using that method, please modify your code to use :func:`sagemaker.predictor.Predictor.delete_endpoint` instead.
0 commit comments