File size: 19,570 Bytes
4021124 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 | ###########################################
Use Version 2.x of the SageMaker Python SDK
###########################################
.. contents::
:local:
:depth: 2
************
Installation
************
To install the latest version:
.. code:: bash
pip install --upgrade sagemaker
If you are executing this pip install command in a notebook, make sure to restart your kernel.
****************
Breaking Changes
****************
This section is for major changes that may require updates to your SageMaker Python SDK code.
For the full list of changes, see the `CHANGELOG <https://github.com/aws/sagemaker-python-sdk/blob/master/CHANGELOG.md>`_.
Removals
============
Python 2 Support
----------------
This library is no longer compatible with Python 2.
Python 2 has been EOL since January 1, 2020.
Please upgrade to Python 3 if you haven't already.
Remove Legacy TensorFlow
---------------------------
TensorFlow versions 1.4-1.10 and some variations of versions 1.11-1.12
(see `What Constitutes "Legacy TensorFlow Support" <frameworks/tensorflow/upgrade_from_legacy.html#what-constitutes-legacy-tensorflow-support>`_)
are no longer natively supported by the SageMaker Python SDK.
To use those versions of TensorFlow, you must specify the Docker image URI explicitly,
and configure settings via hyperparameters or environment variables rather than using SDK parameters.
For more information, see `Upgrade from Legacy TensorFlow Support <frameworks/tensorflow/upgrade_from_legacy.html>`_.
SageMaker Python SDK CLI
------------------------
The SageMaker Python SDK CLI has been removed.
(This is different from the AWS CLI.)
``delete_endpoint()`` for Estimators and ``HyperparameterTuner``
----------------------------------------------------------------
The ``delete_endpoint()`` method for estimators and ``HyperparameterTuner`` is now a no-op.
Please use :func:`sagemaker.predictor.Predictor.delete_endpoint` instead.
``update_endpoint`` in ``deploy()``
-----------------------------------
The ``update_endpoint`` argument in ``deploy()`` methods for estimators and models is now a no-op.
Please use :func:`sagemaker.predictor.Predictor.update_endpoint` instead.
``serializer`` and ``deserializer`` in ``create_model()``
---------------------------------------------------------
The ``serializer`` and ``deserializer`` arguments in
:func:`sagemaker.estimator.Estimator.create_model` are now no-ops.
Please specify serializers and deserializers in ``deploy()`` methods instead.
``content_type`` and ``accept`` in the Predictor Constructor
------------------------------------------------------------
The ``content_type`` and ``accept`` parameters are now no-ops in the
following classes and methods:
- ``sagemaker.predictor.Predictor``
- ``sagemaker.estimator.Estimator.create_model``
- ``sagemaker.algorithms.AlgorithmEstimator.create_model``
- ``sagemaker.tensorflow.model.TensorFlowPredictor``
Please specify content types in a serializer or deserializer class instead.
Changes in Default Behavior
===========================
Require ``framework_version`` and ``py_version`` for Frameworks
---------------------------------------------------------------
Framework estimator and model classes now require ``framework_version`` and ``py_version`` instead of supplying defaults,
unless an image URI is explicitly supplied.
For example:
.. code:: python
from sagemaker.tensorflow import TensorFlow
TensorFlow(
entry_point="script.py",
framework_version="2.2.0", # now required
py_version="py37", # now required
role="my-role",
instance_type="ml.m5.xlarge",
instance_count=1,
)
from sagemaker.mxnet import MXNetModel
MXNetModel(
model_data="s3://bucket/model.tar.gz",
role="my-role",
entry_point="inference.py",
framework_version="1.6.0", # now required
py_version="py3", # now required
)
Log Display Behavior with ``attach()``
--------------------------------------
Logs are no longer printed when using ``attach()`` with an estimator.
To view logs after attaching a training job to an estimator, use :func:`sagemaker.estimator.EstimatorBase.logs`.
``HyperparameterTuner.fit()`` and ``Transformer.transform()``
-------------------------------------------------------------
:func:`sagemaker.tuner.HyperparameterTuner.fit` and :func:`sagemaker.transformer.Transformer.transform` now wait
until the completion of the Hyperparameter Tuning Job or Batch Transform Job, respectively.
To make the function non-blocking, use ``wait=False``.
XGBoost Predictor
-----------------
The default serializer of ``sagemaker.xgboost.model.XGBoostPredictor`` has been changed from ``NumpySerializer`` to ``LibSVMSerializer``.
Parameter Order Changes
=======================
``sagemaker.model.Model`` Parameter Order
-----------------------------------------
The parameter order for :class:`sagemaker.model.Model` changed: instead of ``model_data`` being first, ``image_uri`` (formerly ``image``) is first.
As a result, ``model_data`` has been made into an optional parameter.
If you are using the :class:`sagemaker.model.Model` class, your code should be changed as follows:
.. code:: python
# v1.x
Model("s3://bucket/path/model.tar.gz", "my-image:latest")
# v2.0 and later
Model("my-image:latest", model_data="s3://bucket/path/model.tar.gz")
Airflow Parameter Order
-----------------------
For :func:`sagemaker.workflow.airflow.model_config` and :func:`sagemaker.workflow.airflow.model_config_from_estimator`,
``instance_type`` is no longer the first positional argument and is now an optional keyword argument.
Dependency Changes
==================
SciPy
-----
SciPy is no longer a required dependency of the SageMaker Python SDK.
If you use :func:`sagemaker.amazon.common.write_spmatrix_to_sparse_tensor` and
don't already install SciPy in your environment, you can use our ``scipy`` installation target:
.. code:: bash
pip install sagemaker[scipy]
TensorFlow
----------
The ``tensorflow`` installation target has been removed, as it is no longer needed for any SageMaker Python SDK functionality.
If you want to install TensorFlow, see `the TensorFlow documentation <https://www.tensorflow.org/install>`_.
********************
Non-Breaking Changes
********************
Deprecations
============
Pre-instantiated Serializer and Deserializer Objects
----------------------------------------------------
The ``csv_serializer``, ``json_serializer``, ``npy_serializer``, ``csv_deserializer``,
``json_deserializer``, and ``numpy_deserializer`` objects have been deprecated.
Please instantiate the objects instead.
+--------------------------------------------+------------------------------------------------+
| v1.x | v2.0 and later |
+============================================+================================================+
| ``sagemaker.predictor.csv_serializer`` | ``sagemaker.serializers.CSVSerializer()`` |
+--------------------------------------------+------------------------------------------------+
| ``sagemaker.predictor.json_serializer`` | ``sagemaker.serializers.JSONSerializer()`` |
+--------------------------------------------+------------------------------------------------+
| ``sagemaker.predictor.npy_serializer`` | ``sagemaker.serializers.NumpySerializer()`` |
+--------------------------------------------+------------------------------------------------+
| ``sagemaker.predictor.csv_deserializer`` | ``sagemaker.deserializers.CSVDeserializer()`` |
+--------------------------------------------+------------------------------------------------+
| ``sagemaker.predictor.json_deserializer`` | ``sagemaker.deserializers.JSONDeserializer()`` |
+--------------------------------------------+------------------------------------------------+
| ``sagemaker.predictor.numpy_deserializer`` | ``sagemaker.deserializers.NumpyDeserializer()``|
+--------------------------------------------+------------------------------------------------+
``sagemaker.content_types``
---------------------------
The ``sagemaker.content_types`` module is deprecated in v2.0 and later of the
SageMaker Python SDK.
Instead of importing constants from ``sagemaker.content_types``, explicitly
write MIME types as a string.
+-------------------------------+--------------------------------+
| v1.x | v2.0 and later |
+===============================+================================+
| ``CONTENT_TYPE_JSON`` | ``"application/json"`` |
+-------------------------------+--------------------------------+
| ``CONTENT_TYPE_CSV`` | ``"text/csv"`` |
+-------------------------------+--------------------------------+
| ``CONTENT_TYPE_OCTET_STREAM`` | ``"application/octet-stream"`` |
+-------------------------------+--------------------------------+
| ``CONTENT_TYPE_NPY`` | ``"application/x-npy"`` |
+-------------------------------+--------------------------------+
Image URI Functions (e.g. ``get_image_uri``)
--------------------------------------------
The following functions have been deprecated in favor of :func:`sagemaker.image_uris.retrieve`:
- ``sagemaker.amazon_estimator.get_image_uri()``
- ``sagemaker.fw_utils.create_image_uri()``
- ``sagemaker.fw_registry.registry()``
- ``sagemaker.utils.get_ecr_image_uri_prefix()``
For more information about usage, see :func:`sagemaker.image_uris.retrieve`.
``enable_cloudwatch_metrics`` for Estimators and Models
-------------------------------------------------------
The parameter ``enable_cloudwatch_metrics`` has been deprecated.
CloudWatch metrics are already emitted for all Training Jobs, etc.
``sagemaker.fw_utils.parse_s3_url``
-----------------------------------
The ``sagemaker.fw_utils.parse_s3_url`` function has been deprecated.
Please use :func:`sagemaker.s3.parse_s3_url` instead.
``sagemaker.session.ModelContainer``
------------------------------------
The class ``sagemaker.session.ModelContainer`` has been deprecated, as it is not needed for creating inference pipelines.
``sagemaker.workflow.condition_step.JsonGet``
---------------------------------------------
The class ``sagemaker.workflow.condition_step.JsonGet`` has been deprecated.
Please use :class:`sagemaker.workflow.functions.JsonGet` instead.
Parameter and Class Name Changes
================================
Estimators
----------
Renamed Estimator Parameters
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The following estimator parameters have been renamed:
+------------------------------+------------------------+
| v1.x | v2.0 and later |
+==============================+========================+
| ``train_instance_count`` | ``instance_count`` |
+------------------------------+------------------------+
| ``train_instance_type`` | ``instance_type`` |
+------------------------------+------------------------+
| ``train_max_run`` | ``max_run`` |
+------------------------------+------------------------+
| ``train_use_spot_instances`` | ``use_spot_instances`` |
+------------------------------+------------------------+
| ``train_max_wait`` | ``max_wait`` |
+------------------------------+------------------------+
| ``train_volume_size`` | ``volume_size`` |
+------------------------------+------------------------+
| ``train_volume_kms_key`` | ``volume_kms_key`` |
+------------------------------+------------------------+
Serializer and Deserializer Classes
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The follow serializer/deserializer classes have been renamed and/or moved:
+--------------------------------------------------------+-------------------------------------------------------+
| v1.x | v2.0 and later |
+========================================================+=======================================================+
| ``sagemaker.predictor._CsvDeserializer`` | ``sagemaker.deserializers.CSVDeserializer`` |
+--------------------------------------------------------+-------------------------------------------------------+
| ``sagemaker.predictor._CsvSerializer`` | ``sagemaker.serializers.CSVSerializer`` |
+--------------------------------------------------------+-------------------------------------------------------+
| ``sagemaker.predictor.BytesDeserializer`` | ``sagemaker.deserializers.BytesDeserializers`` |
+--------------------------------------------------------+-------------------------------------------------------+
| ``sagemaker.predictor.StringDeserializer`` | ``sagemaker.deserializers.StringDeserializer`` |
+--------------------------------------------------------+-------------------------------------------------------+
| ``sagemaker.predictor.StreamDeserializer`` | ``sagemaker.deserializers.StreamDeserializer`` |
+--------------------------------------------------------+-------------------------------------------------------+
| ``sagemaker.predictor._JsonSerializer`` | ``sagemaker.serializers.JSONSerializer`` |
+--------------------------------------------------------+-------------------------------------------------------+
| ``sagemaker.predictor._NumpyDeserializer`` | ``sagemaker.deserializers.NumpyDeserializer`` |
+--------------------------------------------------------+-------------------------------------------------------+
| ``sagemaker.predictor._NPYSerializer`` | ``sagemaker.serializers.NumpySerializer`` |
+--------------------------------------------------------+-------------------------------------------------------+
| ``sagemaker.amazon.common.numpy_to_record_serializer`` | ``sagemaker.amazon.common.RecordSerializer`` |
+--------------------------------------------------------+-------------------------------------------------------+
| ``sagemaker.amazon.common.record_deserializer`` | ``sagemaker.amazon.common.RecordDeserializer`` |
+--------------------------------------------------------+-------------------------------------------------------+
| ``sagemaker.predictor._JsonDeserializer`` | ``sagemaker.deserializers.JSONDeserializer`` |
+--------------------------------------------------------+-------------------------------------------------------+
``sagemaker.serializers.LibSVMSerializer`` has been added in v2.0.
``distributions``
~~~~~~~~~~~~~~~~~
For TensorFlow and MXNet estimators, ``distributions`` has been renamed to ``distribution``.
Specify Custom Training Images
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The ``image_name`` parameter has been renamed to ``image_uri`` for specifying a custom Docker image URI to use with training.
Models
------
Specify Custom Serving Image
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The ``image`` parameter has been renamed to ``image_uri`` for specifying a custom Docker image URI to use with inference.
TensorFlow Serving Model
~~~~~~~~~~~~~~~~~~~~~~~~
``sagemaker.tensorflow.serving.Model`` has been renamed to :class:`sagemaker.tensorflow.model.TensorFlowModel`.
(For the previous implementation of that class, see `Remove Legacy TensorFlow <#remove-legacy-tensorflow>`_).
Predictors
----------
Generic Predictor Class Name
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
``sagemaker.predictor.RealTimePredictor`` has been renamed to :class:`sagemaker.predictor.Predictor`.
Endpoint Argument Name
~~~~~~~~~~~~~~~~~~~~~~
For :class:`sagemaker.predictor.Predictor`, :class:`sagemaker.sparkml.model.SparkMLPredictor`,
and predictors for Amazon algorithm (e.g. Factorization Machines, Linear Learner, etc.),
the ``endpoint`` attribute has been renamed to ``endpoint_name``.
TensorFlow Serving Predictor
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
``sagemaker.tensorflow.serving.Predictor`` has been renamed to :class:`sagemaker.tensorflow.model.TensorFlowPredictor`.
(For the previous implementation of that class, see `Remove Legacy TensorFlow <#remove-legacy-tensorflow>`_).
Inputs
------
``s3_input``
~~~~~~~~~~~~
``sagemaker.session.s3_input`` has been renamed to :class:`sagemaker.inputs.TrainingInput`.
``ShuffleConfig``
~~~~~~~~~~~~~~~~~
``sagemaker.session.ShuffleConfig`` has been renamed to :class:`sagemaker.inputs.ShuffleConfig`.
Airflow
-------
For :func:`sagemaker.workflow.airflow.model_config`, :func:`sagemaker.workflow.airflow.model_config_from_estimator`, and
:func:`sagemaker.workflow.airflow.transform_config_from_estimator`, the ``image`` argument has been renamed to ``image_uri``.
*******************************
Automatically Upgrade Your Code
*******************************
To help make your transition as seamless as possible, v2 of the SageMaker Python SDK comes with a command-line tool to automate updating your code.
It automates as much as possible, but there are still syntactical and stylistic changes that cannot be performed by the script.
.. warning::
While the tool is intended to be easy to use, we recommend using it as part of a process that includes testing before and after you run the tool.
Usage
=====
Currently, the tool supports only converting one file at a time:
.. code::
$ sagemaker-upgrade-v2 --in-file input.py --out-file output.py
$ sagemaker-upgrade-v2 --in-file input.ipynb --out-file output.ipynb
You can apply it to a set of files using a loop:
.. code:: bash
$ for file in $(find input-dir); do sagemaker-upgrade-v2 --in-file $file --out-file output-dir/$file; done
Limitations
===========
Jupyter Notebook Cells with Shell Commands
------------------------------------------
If your Jupyter notebook has a code cell with lines that start with either ``%%`` or ``!``, the tool ignores that cell.
The other cells in the notebook are still updated.
Aliased Imports
---------------
The tool checks for a limited number of patterns when looking for constructors.
For example, if you are using a TensorFlow estimator, only the following invocation styles are handled:
.. code:: python
TensorFlow()
sagemaker.tensorflow.TensorFlow()
sagemaker.tensorflow.estimator.TensorFlow()
If you have aliased an import, e.g. ``from sagemaker.tensorflow import TensorFlow as TF``, the tool does not take care of updating its parameters.
TensorFlow Serving
------------------
If you are using the ``sagemaker.tensorflow.serving.Model`` class, the tool does not take care of adding a framework version or changing it to ``sagemaker.tensorflow.TensorFlowModel``.
``sagemaker.model.Model``
-------------------------
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``).
``update_endpoint`` and ``delete_endpoint``
-------------------------------------------
The tool does not take care of removing the ``update_endpoint`` argument from a ``deploy`` call.
If you are using that argument, please modify your code to use :func:`sagemaker.predictor.Predictor.update_endpoint` instead.
The tool also does not handle ``delete_endpoint`` calls on estimators or ``HyperparameterTuner``.
If you are using that method, please modify your code to use :func:`sagemaker.predictor.Predictor.delete_endpoint` instead.
|