Skip to content

Commit 94e8a71

Browse files
authored
Merge branch 'master' into patch-2
2 parents 5875efd + ee13440 commit 94e8a71

File tree

5 files changed

+15
-8
lines changed

5 files changed

+15
-8
lines changed

src/sagemaker/model.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -791,7 +791,8 @@ def __init__(
791791
authentication if they are provided; otherwise, python SDK will
792792
try to use either CodeCommit credential helper or local
793793
credential storage for authentication.
794-
**kwargs: Keyword arguments passed to the ``Model`` initializer.
794+
**kwargs: Keyword arguments passed to the superclass
795+
:class:`~sagemaker.model.Model`.
795796
796797
.. tip::
797798

src/sagemaker/mxnet/model.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,9 @@ def __init__(
107107
model_server_workers (int): Optional. The number of worker processes
108108
used by the inference server. If None, server will use one
109109
worker per vCPU.
110-
**kwargs: Keyword arguments passed to the ``FrameworkModel``
111-
initializer.
110+
**kwargs: Keyword arguments passed to the superclass
111+
:class:`~sagemaker.model.FrameworkModel` and, subsequently, its
112+
superclass :class:`~sagemaker.model.Model`.
112113
113114
.. tip::
114115

src/sagemaker/pytorch/model.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def __init__(
7575
model_server_workers=None,
7676
**kwargs
7777
):
78-
"""Initialize an PyTorchModel.
78+
"""Initialize a PyTorchModel.
7979
8080
Args:
8181
model_data (str): The S3 location of a SageMaker model data
@@ -106,8 +106,9 @@ def __init__(
106106
model_server_workers (int): Optional. The number of worker processes
107107
used by the inference server. If None, server will use one
108108
worker per vCPU.
109-
**kwargs: Keyword arguments passed to the ``FrameworkModel``
110-
initializer.
109+
**kwargs: Keyword arguments passed to the superclass
110+
:class:`~sagemaker.model.FrameworkModel` and, subsequently, its
111+
superclass :class:`~sagemaker.model.Model`.
111112
112113
.. tip::
113114

src/sagemaker/tensorflow/model.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,9 @@ def __init__(
175175
to call to create a predictor with an endpoint name and
176176
SageMaker ``Session``. If specified, ``deploy()`` returns the
177177
result of invoking this function on the created endpoint name.
178-
**kwargs: Keyword arguments passed to the ``Model`` initializer.
178+
**kwargs: Keyword arguments passed to the superclass
179+
:class:`~sagemaker.model.FrameworkModel` and, subsequently, its
180+
superclass :class:`~sagemaker.model.Model`.
179181
180182
.. tip::
181183

src/sagemaker/xgboost/model.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,9 @@ def __init__(
9090
created endpoint name.
9191
model_server_workers (int): Optional. The number of worker processes used by the
9292
inference server. If None, server will use one worker per vCPU.
93-
**kwargs: Keyword arguments passed to the ``FrameworkModel`` initializer.
93+
**kwargs: Keyword arguments passed to the superclass
94+
:class:`~sagemaker.model.FrameworkModel` and, subsequently, its
95+
superclass :class:`~sagemaker.model.Model`.
9496
9597
.. tip::
9698

0 commit comments

Comments
 (0)