Skip to content

Commit fa6655a

Browse files
Merge branch 'master' into more-unit-test-for-transform-step
2 parents e7a0519 + f14a4f5 commit fa6655a

File tree

4 files changed

+19
-6
lines changed

4 files changed

+19
-6
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## v2.93.0 (2022-06-03)
4+
5+
### Features
6+
7+
* MxNet 1.9 support
8+
9+
### Bug Fixes and Other Changes
10+
11+
* bump importlib-metadata version upperbound to support TF2.9
12+
* fix pipeline doc code example where process.run only accepts argument
13+
* Fix Tensorflow default model_dir generation when output_path is pipeline variable
14+
* Support transformer data parameterization
15+
316
## v2.92.2 (2022-05-31)
417

518
### Bug Fixes and Other Changes

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.92.3.dev0
1+
2.93.1.dev0

doc/amazon_sagemaker_model_building_pipeline.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ Referable Property List:
239239
ProcessingOutput(output_name="train", source="/opt/ml/processing/train"),
240240
],
241241
code="./local/preprocess.py",
242-
job_arguments=["--input-data", "s3://my-input"]
242+
arguments=["--input-data", "s3://my-input"]
243243
),
244244
)
245245
@@ -496,7 +496,7 @@ A :class:`sagemaker.workflow.properties.PropertyFile` is designed to store infor
496496
ProcessingOutput(output_name="hyperparam", source="/opt/ml/processing/evaluation"),
497497
],
498498
code="./local/preprocess.py",
499-
job_arguments=["--input-data", "s3://my-input"],
499+
arguments=["--input-data", "s3://my-input"],
500500
)
501501
502502
hyperparam_report = PropertyFile(
@@ -577,7 +577,7 @@ There are eight types of condition are supported, they are:
577577
ProcessingOutput(output_name="hyperparam", source="/opt/ml/processing/evaluation"),
578578
],
579579
code="./local/preprocess.py",
580-
job_arguments=["--input-data", "s3://my-input"],
580+
arguments=["--input-data", "s3://my-input"],
581581
)
582582
583583
eval_report = PropertyFile(
@@ -668,7 +668,7 @@ Use :class:`sagemaker.workflow.functions.JsonGet` to extract a Json property fro
668668
ProcessingOutput(output_name="hyperparam", source="/opt/ml/processing/evaluation"),
669669
],
670670
code="./local/preprocess.py",
671-
job_arguments=["--input-data", "s3://my-input"],
671+
arguments=["--input-data", "s3://my-input"],
672672
)
673673
674674
hyperparam_report = PropertyFile(

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def read_requirements(filename):
5454
"protobuf>=3.1,<4.0",
5555
"protobuf3-to-dict>=0.1.5,<1.0",
5656
"smdebug_rulesconfig==1.0.1",
57-
"importlib-metadata>=1.4.0,<2.0",
57+
"importlib-metadata>=1.4.0,<5.0",
5858
"packaging>=20.0",
5959
"pandas",
6060
"pathos",

0 commit comments

Comments
 (0)