@@ -162,7 +162,7 @@ class CreateModelInput(object):
162
162
163
163
@attr .s
164
164
class TransformInput (object ):
165
- """Create a class containing all the parameters .
165
+ """Creates a class containing parameters for configuring input data for a batch tramsform job .
166
166
167
167
It can be used when calling ``sagemaker.transformer.Transformer.transform()``
168
168
@@ -180,14 +180,14 @@ class TransformInput(object):
180
180
Valid values: ``'Line'``, ``RecordIO``, ``'TFRecord'``, None
181
181
(default: None)
182
182
input_filter (str): A JSONPath expression for selecting a portion of the input data to pass
183
- to the algorithm. For example, you can use this parameter to exclude fields, such as an
184
- ID column, from the input. If you want SageMaker to pass the entire input dataset to the
185
- algorithm, accept the default value ``$``. For more information on batch transform data
183
+ to the algorithm. For example, you can use this parameter to exclude fields, such as an
184
+ ID column, from the input. If you want SageMaker to pass the entire input dataset to the
185
+ algorithm, accept the default value ``$``. For more information on batch transform data
186
186
processing, input, join, and output, see
187
187
`Associate Prediction Results with Input Records
188
188
<https://docs.aws.amazon.com/sagemaker/latest/dg/batch-transform-data-processing.html?>`_
189
189
in the *Amazon SageMaker developer guide*.
190
- Example value: ``$``. For more information about valid values for this parameter, see
190
+ Example value: ``$``. For more information about valid values for this parameter, see
191
191
`JSONPath Operators
192
192
<https://docs.aws.amazon.com/sagemaker/latest/dg/batch-transform-data-processing.html#data-processing-operators>`_
193
193
in the *Amazon SageMaker developer guide*.
@@ -196,7 +196,7 @@ class TransformInput(object):
196
196
save in the output file for a batch transform job. If you want SageMaker to store the
197
197
entire input dataset in the output file, leave the default value, $. If you specify
198
198
indexes that aren't within the dimension size of the joined dataset, you get an error.
199
- Example value: ``$``. For more information about valid values for this parameter, see
199
+ Example value: ``$``. For more information about valid values for this parameter, see
200
200
`JSONPath Operators
201
201
<https://docs.aws.amazon.com/sagemaker/latest/dg/batch-transform-data-processing.html#data-processing-operators>`_
202
202
in the *Amazon SageMaker developer guide*.
@@ -216,9 +216,11 @@ class TransformInput(object):
216
216
requests are failing.
217
217
218
218
(default: ``{600,3}``)
219
- batch_data_capture_config (dict): Specifies configuration related to batch transform job
220
- data capture for use with Amazon SageMaker Model Monitoring. For more information about
221
- batch transform job data capture, see `Capture data from batch transform job
219
+ batch_data_capture_config (dict, an object of `BatchDataCaptureConfig
220
+ <https://sagemaker.readthedocs.io/en/stable/api/utility/inputs.html#sagemaker.inputs.BatchDataCaptureConfig>`_)
221
+ Specifies configuration related to batch transform job
222
+ for use with Amazon SageMaker Model Monitoring. For more information,
223
+ see `Capture data from batch transform job
222
224
<https://docs.aws.amazon.com/sagemaker/latest/dg/model-monitor-data-capture-batch.html>`_
223
225
in the *Amazon SageMaker developer guide*.
224
226
(default: None)
0 commit comments