@@ -68,8 +68,8 @@ def __init__(
68
68
max_payload (int): Maximum size of the payload in a single HTTP
69
69
request to the container in MB.
70
70
tags (list[dict]): List of tags for labeling a transform job
71
- (default: None). For more, see
72
- https://docs.aws.amazon.com/sagemaker/latest/dg/API_Tag.html.
71
+ (default: None). For more, see the SageMaker API documentation for
72
+ `Tag < https://docs.aws.amazon.com/sagemaker/latest/dg/API_Tag.html>`_ .
73
73
env (dict): Environment variables to be set for use during the
74
74
transform job (default: None).
75
75
base_transform_job_name (str): Prefix for the transform job when the
@@ -146,11 +146,21 @@ def transform(
146
146
input_filter (str): A JSONPath to select a portion of the input to
147
147
pass to the algorithm container for inference. If you omit the
148
148
field, it gets the value '$', representing the entire input.
149
- For more information, see https://docs.aws.amazon.com/sagemaker/latest/dg/API_CreateTransformJob.html.
149
+ For CSV data, each row is taken as a JSON array,
150
+ so only index-based JSONPaths can be applied, e.g. $[0], $[1:].
151
+ CSV data should follow the `RFC format <https://tools.ietf.org/html/rfc4180>`_.
152
+ See `Supported JSONPath Operators
153
+ <https://docs.aws.amazon.com/sagemaker/latest/dg/batch-transform-data-processing.html#data-processing-operators>`_
154
+ for a table of supported JSONPath operators.
155
+ For more information, see the SageMaker API documentation for
156
+ `CreateTransformJob
157
+ <https://docs.aws.amazon.com/sagemaker/latest/dg/API_CreateTransformJob.html>`_.
150
158
Some examples: "$[1:]", "$.features" (default: None).
151
159
output_filter (str): A JSONPath to select a portion of the
152
160
joined/original output to return as the output.
153
- For more information, see https://docs.aws.amazon.com/sagemaker/latest/dg/API_CreateTransformJob.html.
161
+ For more information, see the SageMaker API documentation for
162
+ `CreateTransformJob
163
+ <https://docs.aws.amazon.com/sagemaker/latest/dg/API_CreateTransformJob.html>`_.
154
164
Some examples: "$[1:]", "$.prediction" (default: None).
155
165
join_source (str): The source of data to be joined to the transform
156
166
output. It can be set to 'Input' meaning the entire input record
0 commit comments