File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1171,7 +1171,7 @@ be ``s3://sagemaker-{REGION}-{ACCOUNTID}/async-endpoint-outputs/{UNIQUE-JOB-NAME
1171
1171
from sagemaker.async_inference import AsyncInferenceConfig
1172
1172
1173
1173
# Create an empty AsyncInferenceConfig object to use default values
1174
- async_config = new AsyncInferenceConfig()
1174
+ async_config = AsyncInferenceConfig()
1175
1175
1176
1176
Or you can specify configurations in ``AsyncInferenceConfig `` as you like. All of those configuration parameters
1177
1177
are optional but if you don’t specify the ``output_path ``, Amazon SageMaker will use the default ``S3OutputPath ``
@@ -1180,7 +1180,7 @@ mentioned above (example shown below):
1180
1180
.. code :: python
1181
1181
1182
1182
# Specify S3OutputPath, MaxConcurrentInvocationsPerInstance and NotificationConfig in the async config object
1183
- async_config = new AsyncInferenceConfig(
1183
+ async_config = AsyncInferenceConfig(
1184
1184
output_path = " s3://{s3_bucket} /{bucket_prefix} /output" ,
1185
1185
max_concurrent_invocations_per_instance = 10 ,
1186
1186
notification_config = {
You can’t perform that action at this time.
0 commit comments