Skip to content

fix quotes #562

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 15, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ CHANGELOG
* bug-fix: Append retry id to default Airflow job name to avoid name collisions in retry
* bug-fix: Local Mode: No longer requires s3 permissions to run local entry point file
* bug-fix: Local Mode: Move dependency on sagemaker_s3_output from rl.estimator to model
* doc-fix: Fix quotes in estimator.py and model.py

1.16.2
======
Expand Down
2 changes: 1 addition & 1 deletion src/sagemaker/estimator.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ def compile_model(self, target_instance_family, input_shape, output_path, framew
example: ml_c5. Allowed strings are: ml_c5, ml_m5, ml_c4, ml_m4, jetsontx1, jetsontx2, ml_p2, ml_p3,
deeplens, rasp3b
input_shape (dict): Specifies the name and shape of the expected inputs for your trained model in json
dictionary form, for example: {data:[1,3,1024,1024]}, or {var1: [1,1,28,28], var2:[1,1,28,28]}
dictionary form, for example: {'data':[1,3,1024,1024]}, or {'var1': [1,1,28,28], 'var2':[1,1,28,28]}
output_path (str): Specifies where to store the compiled model
framework (str): The framework that is used to train the original model. Allowed values: 'mxnet',
'tensorflow', 'pytorch', 'onnx', 'xgboost'
Expand Down
2 changes: 1 addition & 1 deletion src/sagemaker/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def compile(self, target_instance_family, input_shape, output_path, role,
example: ml_c5. Allowed strings are: ml_c5, ml_m5, ml_c4, ml_m4, jetsontx1, jetsontx2, ml_p2, ml_p3,
deeplens, rasp3b
input_shape (dict): Specifies the name and shape of the expected inputs for your trained model in json
dictionary form, for example: {data:[1,3,1024,1024]}, or {var1: [1,1,28,28], var2:[1,1,28,28]}
dictionary form, for example: {'data':[1,3,1024,1024]}, or {'var1': [1,1,28,28], 'var2':[1,1,28,28]}
output_path (str): Specifies where to store the compiled model
role (str): Execution role
tags (list[dict]): List of tags for labeling a compilation job. For more, see
Expand Down