Skip to content

Commit b712289

Browse files
committed
resolving merge conflicts
2 parents 27ec1f0 + df701c3 commit b712289

File tree

4 files changed

+20
-6
lines changed

4 files changed

+20
-6
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## v2.125.0 (2022-12-19)
4+
5+
### Features
6+
7+
* add RandomSeed to support reproducible HPO
8+
9+
### Bug Fixes and Other Changes
10+
11+
* Correct SageMaker Clarify API docstrings by changing JSONPath to JMESPath
12+
313
## v2.124.0 (2022-12-16)
414

515
### Features

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.124.1.dev0
1+
2.125.1.dev0

doc/amazon_sagemaker_model_building_pipeline.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ Example:
453453
str_outputParam, int_outputParam, bool_outputParam, float_outputParam
454454
],
455455
)
456-
output_ref = step_lambda.OutputParameters["output1"]
456+
output_ref = step_lambda.properties.Outputs["output1"]
457457
458458
Where the lambda function with :code:`arn arn:aws:lambda:us-west-2:123456789012:function:sagemaker_test_lambda`
459459
should output like this:
@@ -479,7 +479,7 @@ Note that the output parameters can not be nested. Otherwise, the value will be
479479
}
480480
}
481481
482-
This will be resolved as :code:`{"output1": "{\"nested_output1\":\"my-output\"}"}` by which if you refer :code:`step_lambda.OutputParameters["output1"]["nested_output1"]` later, a non-retryable client error will be thrown.
482+
This will be resolved as :code:`{"output1": "{\"nested_output1\":\"my-output\"}"}` by which if you refer :code:`step_lambda.properties.Outputs["output1"]["nested_output1"]` later, a non-retryable client error will be thrown.
483483

484484
CallbackStep
485485
`````````````
@@ -503,7 +503,7 @@ Example:
503503
inputs={"arg1": "foo", "arg2": 5, "arg3": param},
504504
outputs=[outputParam],
505505
)
506-
output_ref = step_callback.OutputParameters["output1]
506+
output_ref = step_callback.properties.Outputs["output1]
507507
508508
The output parameters cannot be nested. If the values are nested, they will be treated as a single string value. For example, a nested output value of
509509
@@ -515,7 +515,7 @@ The output parameters cannot be nested. If the values are nested, they will be t
515515
}
516516
}
517517
518-
is resolved as :code:`{"output1": "{\"nested_output1\":\"my-output\"}"}`. If you try to refer to :code:`step_callback.OutputParameters["output1"]["nested_output1"]` this will throw a non-retryable client error.
518+
is resolved as :code:`{"output1": "{\"nested_output1\":\"my-output\"}"}`. If you try to refer to :code:`step_callback.properties.Outputs["output1"]["nested_output1"]` this will throw a non-retryable client error.
519519
520520
521521
QualityCheckStep

src/sagemaker/debugger/profiler_config.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,11 @@ def _to_request_dict(self):
9090
"""
9191
profiler_config_request = {}
9292

93-
if self.s3_output_path is not None:
93+
if (
94+
self.s3_output_path is not None
95+
and self.disable_profiler is not None
96+
and self.disable_profiler is False
97+
):
9498
profiler_config_request["S3OutputPath"] = self.s3_output_path
9599

96100
profiler_config_request["DisableProfiler"] = self.disable_profiler

0 commit comments

Comments
 (0)