File tree Expand file tree Collapse file tree 5 files changed +15
-8
lines changed Expand file tree Collapse file tree 5 files changed +15
-8
lines changed Original file line number Diff line number Diff line change @@ -791,7 +791,8 @@ def __init__(
791
791
authentication if they are provided; otherwise, python SDK will
792
792
try to use either CodeCommit credential helper or local
793
793
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`.
795
796
796
797
.. tip::
797
798
Original file line number Diff line number Diff line change @@ -107,8 +107,9 @@ def __init__(
107
107
model_server_workers (int): Optional. The number of worker processes
108
108
used by the inference server. If None, server will use one
109
109
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`.
112
113
113
114
.. tip::
114
115
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ def __init__(
75
75
model_server_workers = None ,
76
76
** kwargs
77
77
):
78
- """Initialize an PyTorchModel.
78
+ """Initialize a PyTorchModel.
79
79
80
80
Args:
81
81
model_data (str): The S3 location of a SageMaker model data
@@ -106,8 +106,9 @@ def __init__(
106
106
model_server_workers (int): Optional. The number of worker processes
107
107
used by the inference server. If None, server will use one
108
108
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`.
111
112
112
113
.. tip::
113
114
Original file line number Diff line number Diff line change @@ -175,7 +175,9 @@ def __init__(
175
175
to call to create a predictor with an endpoint name and
176
176
SageMaker ``Session``. If specified, ``deploy()`` returns the
177
177
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`.
179
181
180
182
.. tip::
181
183
Original file line number Diff line number Diff line change @@ -90,7 +90,9 @@ def __init__(
90
90
created endpoint name.
91
91
model_server_workers (int): Optional. The number of worker processes used by the
92
92
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`.
94
96
95
97
.. tip::
96
98
You can’t perform that action at this time.
0 commit comments