aws-sdk-sagemaker 1.26.0 → 1.27.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +100 -38
- data/lib/aws-sdk-sagemaker/client_api.rb +6 -1
- data/lib/aws-sdk-sagemaker/types.rb +482 -143
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 92656219fc4c4719501390472b1babf40ee82446
|
4
|
+
data.tar.gz: d8e5343a73168d8d65f9068f0dc2a4621b77547b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5af923da2292ab59ef43de9ff87ff7b0bf24efc321e2f759f4c5e07108de9d8735da7b9b05e43b66006f753ba49f039a77b38ea2bbc4532822667630daafffa5
|
7
|
+
data.tar.gz: 1687b9e5f375cf1488d59b9f23e393500b61865dbdb78381d49c8e0a1c15931af7a6ad462357cb08aa1c0c50166c9f673404dfe8474271e66ec60babac67c75d
|
data/lib/aws-sdk-sagemaker.rb
CHANGED
@@ -283,8 +283,7 @@ module Aws::SageMaker
|
|
283
283
|
# SageMaker and list in the AWS Marketplace.
|
284
284
|
#
|
285
285
|
# @option params [required, String] :algorithm_name
|
286
|
-
# The name of the algorithm.
|
287
|
-
# Valid characters are a-z, A-Z, 0-9, and - (hyphen).
|
286
|
+
# The name of the algorithm.
|
288
287
|
#
|
289
288
|
# @option params [String] :algorithm_description
|
290
289
|
# A description of the algorithm.
|
@@ -469,7 +468,7 @@ module Aws::SageMaker
|
|
469
468
|
# },
|
470
469
|
# content_type: "ContentType",
|
471
470
|
# compression_type: "None", # accepts None, Gzip
|
472
|
-
# split_type: "None", # accepts None, Line, RecordIO
|
471
|
+
# split_type: "None", # accepts None, Line, RecordIO, TFRecord
|
473
472
|
# },
|
474
473
|
# transform_output: { # required
|
475
474
|
# s3_output_path: "S3Uri", # required
|
@@ -535,7 +534,7 @@ module Aws::SageMaker
|
|
535
534
|
# resp = client.create_code_repository({
|
536
535
|
# code_repository_name: "EntityName", # required
|
537
536
|
# git_config: { # required
|
538
|
-
# repository_url: "
|
537
|
+
# repository_url: "GitConfigUrl", # required
|
539
538
|
# branch: "Branch",
|
540
539
|
# secret_arn: "SecretArn",
|
541
540
|
# },
|
@@ -1031,19 +1030,19 @@ module Aws::SageMaker
|
|
1031
1030
|
req.send_request(options)
|
1032
1031
|
end
|
1033
1032
|
|
1034
|
-
# Creates a job that uses
|
1035
|
-
#
|
1036
|
-
#
|
1033
|
+
# Creates a job that uses workers to label the data objects in your
|
1034
|
+
# input dataset. You can use the labeled data to train machine learning
|
1035
|
+
# models.
|
1037
1036
|
#
|
1038
1037
|
# You can select your workforce from one of three providers:
|
1039
1038
|
#
|
1040
1039
|
# * A private workforce that you create. It can include employees,
|
1041
|
-
# contractors, and outside experts. Use a private workforce when
|
1042
|
-
# data
|
1040
|
+
# contractors, and outside experts. Use a private workforce when want
|
1041
|
+
# the data to stay within your organization or when a specific set of
|
1042
|
+
# skills is required.
|
1043
1043
|
#
|
1044
|
-
# * One or more vendors that you select from the
|
1045
|
-
# Vendors provide expertise in specific areas.
|
1046
|
-
# AWS and meet a minimum standard of data security requirements.
|
1044
|
+
# * One or more vendors that you select from the AWS Marketplace.
|
1045
|
+
# Vendors provide expertise in specific areas.
|
1047
1046
|
#
|
1048
1047
|
# * The Amazon Mechanical Turk workforce. This is the largest workforce,
|
1049
1048
|
# but it should only be used for public data or data that has been
|
@@ -1052,18 +1051,20 @@ module Aws::SageMaker
|
|
1052
1051
|
# You can also use *automated data labeling* to reduce the number of
|
1053
1052
|
# data objects that need to be labeled by a human. Automated data
|
1054
1053
|
# labeling uses *active learning* to determine if a data object can be
|
1055
|
-
# labeled by machine or if it needs to be sent to a human worker.
|
1054
|
+
# labeled by machine or if it needs to be sent to a human worker. For
|
1055
|
+
# more information, see [Using Automated Data Labeling][1].
|
1056
1056
|
#
|
1057
1057
|
# The data objects to be labeled are contained in an Amazon S3 bucket.
|
1058
1058
|
# You create a *manifest file* that describes the location of each
|
1059
|
-
# object. For more information, see [Using Input and Output Data][
|
1059
|
+
# object. For more information, see [Using Input and Output Data][2].
|
1060
1060
|
#
|
1061
1061
|
# The output can be used as the manifest file for another labeling job
|
1062
1062
|
# or as training data for your machine learning models.
|
1063
1063
|
#
|
1064
1064
|
#
|
1065
1065
|
#
|
1066
|
-
# [1]: http://docs.aws.amazon.com/sagemaker/latest/dg/sms-
|
1066
|
+
# [1]: http://docs.aws.amazon.com/sagemaker/latest/dg/sms-automated-labeling.html
|
1067
|
+
# [2]: http://docs.aws.amazon.com/sagemaker/latest/dg/sms-data.html
|
1067
1068
|
#
|
1068
1069
|
# @option params [required, String] :labeling_job_name
|
1069
1070
|
# The name of the labeling job. This name is used to identify the job in
|
@@ -1072,8 +1073,10 @@ module Aws::SageMaker
|
|
1072
1073
|
# @option params [required, String] :label_attribute_name
|
1073
1074
|
# The attribute name to use for the label in the output manifest file.
|
1074
1075
|
# This is the key for the key/value pair formed with the label that a
|
1075
|
-
# worker assigns to the object. The name can't end with "-metadata"
|
1076
|
-
#
|
1076
|
+
# worker assigns to the object. The name can't end with "-metadata".
|
1077
|
+
# If you are running a semantic segmentation labeling job, the attribute
|
1078
|
+
# name must end with "-ref". If you are running any other kind of
|
1079
|
+
# labeling job, the attribute name must not end with "-ref".
|
1077
1080
|
#
|
1078
1081
|
# @option params [required, Types::LabelingJobInputConfig] :input_config
|
1079
1082
|
# Input data for the labeling job, such as the Amazon S3 location of the
|
@@ -1094,6 +1097,38 @@ module Aws::SageMaker
|
|
1094
1097
|
# The S3 URL of the file that defines the categories used to label the
|
1095
1098
|
# data objects.
|
1096
1099
|
#
|
1100
|
+
# The file is a JSON structure in the following format:
|
1101
|
+
#
|
1102
|
+
# `\{`
|
1103
|
+
#
|
1104
|
+
# ` "document-version": "2018-11-28"`
|
1105
|
+
#
|
1106
|
+
# ` "labels": [`
|
1107
|
+
#
|
1108
|
+
# ` \{`
|
1109
|
+
#
|
1110
|
+
# ` "label": "label 1"`
|
1111
|
+
#
|
1112
|
+
# ` \},`
|
1113
|
+
#
|
1114
|
+
# ` \{`
|
1115
|
+
#
|
1116
|
+
# ` "label": "label 2"`
|
1117
|
+
#
|
1118
|
+
# ` \},`
|
1119
|
+
#
|
1120
|
+
# ` ...`
|
1121
|
+
#
|
1122
|
+
# ` \{`
|
1123
|
+
#
|
1124
|
+
# ` "label": "label n"`
|
1125
|
+
#
|
1126
|
+
# ` \}`
|
1127
|
+
#
|
1128
|
+
# ` ]`
|
1129
|
+
#
|
1130
|
+
# `\}`
|
1131
|
+
#
|
1097
1132
|
# @option params [Types::LabelingJobStoppingConditions] :stopping_conditions
|
1098
1133
|
# A set of conditions for stopping the labeling job. If any of the
|
1099
1134
|
# conditions are met, the job is automatically stopped. You can use
|
@@ -1344,6 +1379,12 @@ module Aws::SageMaker
|
|
1344
1379
|
# packages listed on AWS Marketplace to create models in Amazon
|
1345
1380
|
# SageMaker.
|
1346
1381
|
#
|
1382
|
+
# To create a model package by specifying a Docker container that
|
1383
|
+
# contains your inference code and the Amazon S3 location of your model
|
1384
|
+
# artifacts, provide values for `InferenceSpecification`. To create a
|
1385
|
+
# model from an algorithm resource that you created or subscribed to in
|
1386
|
+
# AWS Marketplace, provide a value for `SourceAlgorithmSpecification`.
|
1387
|
+
#
|
1347
1388
|
# @option params [required, String] :model_package_name
|
1348
1389
|
# The name of the model package. The name must have 1 to 63 characters.
|
1349
1390
|
# Valid characters are a-z, A-Z, 0-9, and - (hyphen).
|
@@ -1419,7 +1460,7 @@ module Aws::SageMaker
|
|
1419
1460
|
# },
|
1420
1461
|
# content_type: "ContentType",
|
1421
1462
|
# compression_type: "None", # accepts None, Gzip
|
1422
|
-
# split_type: "None", # accepts None, Line, RecordIO
|
1463
|
+
# split_type: "None", # accepts None, Line, RecordIO, TFRecord
|
1423
1464
|
# },
|
1424
1465
|
# transform_output: { # required
|
1425
1466
|
# s3_output_path: "S3Uri", # required
|
@@ -1541,7 +1582,13 @@ module Aws::SageMaker
|
|
1541
1582
|
# @option params [String] :kms_key_id
|
1542
1583
|
# If you provide a AWS KMS key ID, Amazon SageMaker uses it to encrypt
|
1543
1584
|
# data at rest on the ML storage volume that is attached to your
|
1544
|
-
# notebook instance.
|
1585
|
+
# notebook instance. The KMS key you provide must be enabled. For
|
1586
|
+
# information, see [Enabling and Disabling Keys][1] in the *AWS Key
|
1587
|
+
# Management Service Developer Guide*.
|
1588
|
+
#
|
1589
|
+
#
|
1590
|
+
#
|
1591
|
+
# [1]: http://docs.aws.amazon.com/kms/latest/developerguide/enabling-keys.html
|
1545
1592
|
#
|
1546
1593
|
# @option params [Array<Types::Tag>] :tags
|
1547
1594
|
# A list of tags to associate with the notebook instance. You can add
|
@@ -1740,7 +1787,7 @@ module Aws::SageMaker
|
|
1740
1787
|
#
|
1741
1788
|
#
|
1742
1789
|
#
|
1743
|
-
# [1]: http://docs.aws.amazon.com/
|
1790
|
+
# [1]: http://docs.aws.amazon.com/sagemaker/latest/dg/howitworks-access-ws.html#nbi-ip-filter
|
1744
1791
|
#
|
1745
1792
|
# @option params [required, String] :notebook_instance_name
|
1746
1793
|
# The name of the notebook instance.
|
@@ -1850,7 +1897,7 @@ module Aws::SageMaker
|
|
1850
1897
|
#
|
1851
1898
|
# @option params [required, String] :role_arn
|
1852
1899
|
# The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker
|
1853
|
-
#
|
1900
|
+
# can assume to perform tasks on your behalf.
|
1854
1901
|
#
|
1855
1902
|
# During model training, Amazon SageMaker needs your permission to read
|
1856
1903
|
# input data from an S3 bucket, download a Docker image that contains
|
@@ -2150,7 +2197,7 @@ module Aws::SageMaker
|
|
2150
2197
|
# },
|
2151
2198
|
# content_type: "ContentType",
|
2152
2199
|
# compression_type: "None", # accepts None, Gzip
|
2153
|
-
# split_type: "None", # accepts None, Line, RecordIO
|
2200
|
+
# split_type: "None", # accepts None, Line, RecordIO, TFRecord
|
2154
2201
|
# },
|
2155
2202
|
# transform_output: { # required
|
2156
2203
|
# s3_output_path: "S3Uri", # required
|
@@ -2631,7 +2678,7 @@ module Aws::SageMaker
|
|
2631
2678
|
# resp.validation_specification.validation_profiles[0].transform_job_definition.transform_input.data_source.s3_data_source.s3_uri #=> String
|
2632
2679
|
# resp.validation_specification.validation_profiles[0].transform_job_definition.transform_input.content_type #=> String
|
2633
2680
|
# resp.validation_specification.validation_profiles[0].transform_job_definition.transform_input.compression_type #=> String, one of "None", "Gzip"
|
2634
|
-
# resp.validation_specification.validation_profiles[0].transform_job_definition.transform_input.split_type #=> String, one of "None", "Line", "RecordIO"
|
2681
|
+
# resp.validation_specification.validation_profiles[0].transform_job_definition.transform_input.split_type #=> String, one of "None", "Line", "RecordIO", "TFRecord"
|
2635
2682
|
# resp.validation_specification.validation_profiles[0].transform_job_definition.transform_output.s3_output_path #=> String
|
2636
2683
|
# resp.validation_specification.validation_profiles[0].transform_job_definition.transform_output.accept #=> String
|
2637
2684
|
# resp.validation_specification.validation_profiles[0].transform_job_definition.transform_output.assemble_with #=> String, one of "None", "Line"
|
@@ -3134,10 +3181,10 @@ module Aws::SageMaker
|
|
3134
3181
|
end
|
3135
3182
|
|
3136
3183
|
# Returns a description of the specified model package, which is used to
|
3137
|
-
# create Amazon SageMaker models or list on AWS Marketplace.
|
3184
|
+
# create Amazon SageMaker models or list them on AWS Marketplace.
|
3138
3185
|
#
|
3139
|
-
#
|
3140
|
-
#
|
3186
|
+
# To create models in Amazon SageMaker, buyers can subscribe to model
|
3187
|
+
# packages listed on AWS Marketplace.
|
3141
3188
|
#
|
3142
3189
|
# @option params [required, String] :model_package_name
|
3143
3190
|
# The name of the model package to describe.
|
@@ -3196,7 +3243,7 @@ module Aws::SageMaker
|
|
3196
3243
|
# resp.validation_specification.validation_profiles[0].transform_job_definition.transform_input.data_source.s3_data_source.s3_uri #=> String
|
3197
3244
|
# resp.validation_specification.validation_profiles[0].transform_job_definition.transform_input.content_type #=> String
|
3198
3245
|
# resp.validation_specification.validation_profiles[0].transform_job_definition.transform_input.compression_type #=> String, one of "None", "Gzip"
|
3199
|
-
# resp.validation_specification.validation_profiles[0].transform_job_definition.transform_input.split_type #=> String, one of "None", "Line", "RecordIO"
|
3246
|
+
# resp.validation_specification.validation_profiles[0].transform_job_definition.transform_input.split_type #=> String, one of "None", "Line", "RecordIO", "TFRecord"
|
3200
3247
|
# resp.validation_specification.validation_profiles[0].transform_job_definition.transform_output.s3_output_path #=> String
|
3201
3248
|
# resp.validation_specification.validation_profiles[0].transform_job_definition.transform_output.accept #=> String
|
3202
3249
|
# resp.validation_specification.validation_profiles[0].transform_job_definition.transform_output.assemble_with #=> String, one of "None", "Line"
|
@@ -3521,7 +3568,7 @@ module Aws::SageMaker
|
|
3521
3568
|
# resp.transform_input.data_source.s3_data_source.s3_uri #=> String
|
3522
3569
|
# resp.transform_input.content_type #=> String
|
3523
3570
|
# resp.transform_input.compression_type #=> String, one of "None", "Gzip"
|
3524
|
-
# resp.transform_input.split_type #=> String, one of "None", "Line", "RecordIO"
|
3571
|
+
# resp.transform_input.split_type #=> String, one of "None", "Line", "RecordIO", "TFRecord"
|
3525
3572
|
# resp.transform_output.s3_output_path #=> String
|
3526
3573
|
# resp.transform_output.accept #=> String
|
3527
3574
|
# resp.transform_output.assemble_with #=> String, one of "None", "Line"
|
@@ -3584,8 +3631,10 @@ module Aws::SageMaker
|
|
3584
3631
|
req.send_request(options)
|
3585
3632
|
end
|
3586
3633
|
|
3587
|
-
#
|
3588
|
-
#
|
3634
|
+
# An auto-complete API for the search functionality in the Amazon
|
3635
|
+
# SageMaker console. It returns suggestions of possible matches for the
|
3636
|
+
# property name to use in `Search` queries. Provides suggestions for
|
3637
|
+
# `HyperParameters`, `Tags`, and `Metrics`.
|
3589
3638
|
#
|
3590
3639
|
# @option params [required, String] :resource
|
3591
3640
|
# The name of the Amazon SageMaker resource to Search for. The only
|
@@ -3803,6 +3852,12 @@ module Aws::SageMaker
|
|
3803
3852
|
# A filter that retrieves model compilation jobs with a specific
|
3804
3853
|
# DescribeCompilationJobResponse$CompilationJobStatus status.
|
3805
3854
|
#
|
3855
|
+
# @option params [String] :sort_by
|
3856
|
+
# The field by which to sort results. The default is `CreationTime`.
|
3857
|
+
#
|
3858
|
+
# @option params [String] :sort_order
|
3859
|
+
# The sort order for results. The default is `Ascending`.
|
3860
|
+
#
|
3806
3861
|
# @return [Types::ListCompilationJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3807
3862
|
#
|
3808
3863
|
# * {Types::ListCompilationJobsResponse#compilation_job_summaries #compilation_job_summaries} => Array<Types::CompilationJobSummary>
|
@@ -3819,6 +3874,8 @@ module Aws::SageMaker
|
|
3819
3874
|
# last_modified_time_before: Time.now,
|
3820
3875
|
# name_contains: "NameContains",
|
3821
3876
|
# status_equals: "INPROGRESS", # accepts INPROGRESS, COMPLETED, FAILED, STARTING, STOPPING, STOPPED
|
3877
|
+
# sort_by: "Name", # accepts Name, CreationTime, Status
|
3878
|
+
# sort_order: "Ascending", # accepts Ascending, Descending
|
3822
3879
|
# })
|
3823
3880
|
#
|
3824
3881
|
# @example Response structure
|
@@ -3827,6 +3884,7 @@ module Aws::SageMaker
|
|
3827
3884
|
# resp.compilation_job_summaries[0].compilation_job_name #=> String
|
3828
3885
|
# resp.compilation_job_summaries[0].compilation_job_arn #=> String
|
3829
3886
|
# resp.compilation_job_summaries[0].creation_time #=> Time
|
3887
|
+
# resp.compilation_job_summaries[0].compilation_start_time #=> Time
|
3830
3888
|
# resp.compilation_job_summaries[0].compilation_end_time #=> Time
|
3831
3889
|
# resp.compilation_job_summaries[0].compilation_target_device #=> String, one of "ml_m4", "ml_m5", "ml_c4", "ml_c5", "ml_p2", "ml_p3", "jetson_tx1", "jetson_tx2", "rasp3b", "deeplens"
|
3832
3890
|
# resp.compilation_job_summaries[0].last_modified_time #=> Time
|
@@ -4948,7 +5006,7 @@ module Aws::SageMaker
|
|
4948
5006
|
# experience.
|
4949
5007
|
#
|
4950
5008
|
# @option params [required, Types::UiTemplate] :ui_template
|
4951
|
-
# A `
|
5009
|
+
# A `Template`object containing the worker UI template to render.
|
4952
5010
|
#
|
4953
5011
|
# @option params [required, Types::RenderableTask] :task
|
4954
5012
|
# A `RenderableTask` object containing a representative task to render.
|
@@ -4992,8 +5050,8 @@ module Aws::SageMaker
|
|
4992
5050
|
|
4993
5051
|
# Finds Amazon SageMaker resources that match a search query. Matching
|
4994
5052
|
# resource objects are returned as a list of `SearchResult` objects in
|
4995
|
-
# the response.
|
4996
|
-
#
|
5053
|
+
# the response. You can sort the search results by any resource property
|
5054
|
+
# in a ascending or descending order.
|
4997
5055
|
#
|
4998
5056
|
# You can query against the following value types: numerical, text,
|
4999
5057
|
# Booleans, and timestamps.
|
@@ -5004,14 +5062,18 @@ module Aws::SageMaker
|
|
5004
5062
|
#
|
5005
5063
|
# @option params [Types::SearchExpression] :search_expression
|
5006
5064
|
# A Boolean conditional statement. Resource objects must satisfy this
|
5007
|
-
# condition to be included in search results.
|
5065
|
+
# condition to be included in search results. You must provide at least
|
5066
|
+
# one subexpression, filter, or nested filter. The maximum number of
|
5067
|
+
# recursive `SubExpressions`, `NestedFilters`, and `Filters` that can be
|
5068
|
+
# included in a `SearchExpression` object is 50.
|
5008
5069
|
#
|
5009
5070
|
# @option params [String] :sort_by
|
5010
5071
|
# The name of the resource property used to sort the `SearchResults`.
|
5072
|
+
# The default is `LastModifiedTime`.
|
5011
5073
|
#
|
5012
5074
|
# @option params [String] :sort_order
|
5013
5075
|
# How `SearchResults` are ordered. Valid values are `Ascending` or
|
5014
|
-
# `Descending`.
|
5076
|
+
# `Descending`. The default is `Descending`.
|
5015
5077
|
#
|
5016
5078
|
# @option params [String] :next_token
|
5017
5079
|
# If more than `MaxResults` resource objects match the specified
|
@@ -5165,8 +5227,8 @@ module Aws::SageMaker
|
|
5165
5227
|
# Stops a model compilation job.
|
5166
5228
|
#
|
5167
5229
|
# To stop a job, Amazon SageMaker sends the algorithm the SIGTERM
|
5168
|
-
# signal. This gracefully shuts the job down. If the job hasn
|
5169
|
-
# it sends the SIGKILL signal.
|
5230
|
+
# signal. This gracefully shuts the job down. If the job hasn't
|
5231
|
+
# stopped, it sends the SIGKILL signal.
|
5170
5232
|
#
|
5171
5233
|
# When it receives a `StopCompilationJob` request, Amazon SageMaker
|
5172
5234
|
# changes the CompilationJobSummary$CompilationJobStatus of the job to
|
@@ -5705,7 +5767,7 @@ module Aws::SageMaker
|
|
5705
5767
|
params: params,
|
5706
5768
|
config: config)
|
5707
5769
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
5708
|
-
context[:gem_version] = '1.
|
5770
|
+
context[:gem_version] = '1.27.0'
|
5709
5771
|
Seahorse::Client::Request.new(handlers, context)
|
5710
5772
|
end
|
5711
5773
|
|
@@ -192,6 +192,7 @@ module Aws::SageMaker
|
|
192
192
|
GetSearchSuggestionsResponse = Shapes::StructureShape.new(name: 'GetSearchSuggestionsResponse')
|
193
193
|
GitConfig = Shapes::StructureShape.new(name: 'GitConfig')
|
194
194
|
GitConfigForUpdate = Shapes::StructureShape.new(name: 'GitConfigForUpdate')
|
195
|
+
GitConfigUrl = Shapes::StringShape.new(name: 'GitConfigUrl')
|
195
196
|
HumanTaskConfig = Shapes::StructureShape.new(name: 'HumanTaskConfig')
|
196
197
|
HyperParameterAlgorithmSpecification = Shapes::StructureShape.new(name: 'HyperParameterAlgorithmSpecification')
|
197
198
|
HyperParameterSpecification = Shapes::StructureShape.new(name: 'HyperParameterSpecification')
|
@@ -255,6 +256,7 @@ module Aws::SageMaker
|
|
255
256
|
ListCodeRepositoriesOutput = Shapes::StructureShape.new(name: 'ListCodeRepositoriesOutput')
|
256
257
|
ListCompilationJobsRequest = Shapes::StructureShape.new(name: 'ListCompilationJobsRequest')
|
257
258
|
ListCompilationJobsResponse = Shapes::StructureShape.new(name: 'ListCompilationJobsResponse')
|
259
|
+
ListCompilationJobsSortBy = Shapes::StringShape.new(name: 'ListCompilationJobsSortBy')
|
258
260
|
ListEndpointConfigsInput = Shapes::StructureShape.new(name: 'ListEndpointConfigsInput')
|
259
261
|
ListEndpointConfigsOutput = Shapes::StructureShape.new(name: 'ListEndpointConfigsOutput')
|
260
262
|
ListEndpointsInput = Shapes::StructureShape.new(name: 'ListEndpointsInput')
|
@@ -618,6 +620,7 @@ module Aws::SageMaker
|
|
618
620
|
CompilationJobSummary.add_member(:compilation_job_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "CompilationJobName"))
|
619
621
|
CompilationJobSummary.add_member(:compilation_job_arn, Shapes::ShapeRef.new(shape: CompilationJobArn, required: true, location_name: "CompilationJobArn"))
|
620
622
|
CompilationJobSummary.add_member(:creation_time, Shapes::ShapeRef.new(shape: CreationTime, required: true, location_name: "CreationTime"))
|
623
|
+
CompilationJobSummary.add_member(:compilation_start_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CompilationStartTime"))
|
621
624
|
CompilationJobSummary.add_member(:compilation_end_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CompilationEndTime"))
|
622
625
|
CompilationJobSummary.add_member(:compilation_target_device, Shapes::ShapeRef.new(shape: TargetDevice, required: true, location_name: "CompilationTargetDevice"))
|
623
626
|
CompilationJobSummary.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: LastModifiedTime, location_name: "LastModifiedTime"))
|
@@ -1142,7 +1145,7 @@ module Aws::SageMaker
|
|
1142
1145
|
GetSearchSuggestionsResponse.add_member(:property_name_suggestions, Shapes::ShapeRef.new(shape: PropertyNameSuggestionList, location_name: "PropertyNameSuggestions"))
|
1143
1146
|
GetSearchSuggestionsResponse.struct_class = Types::GetSearchSuggestionsResponse
|
1144
1147
|
|
1145
|
-
GitConfig.add_member(:repository_url, Shapes::ShapeRef.new(shape:
|
1148
|
+
GitConfig.add_member(:repository_url, Shapes::ShapeRef.new(shape: GitConfigUrl, required: true, location_name: "RepositoryUrl"))
|
1146
1149
|
GitConfig.add_member(:branch, Shapes::ShapeRef.new(shape: Branch, location_name: "Branch"))
|
1147
1150
|
GitConfig.add_member(:secret_arn, Shapes::ShapeRef.new(shape: SecretArn, location_name: "SecretArn"))
|
1148
1151
|
GitConfig.struct_class = Types::GitConfig
|
@@ -1374,6 +1377,8 @@ module Aws::SageMaker
|
|
1374
1377
|
ListCompilationJobsRequest.add_member(:last_modified_time_before, Shapes::ShapeRef.new(shape: LastModifiedTime, location_name: "LastModifiedTimeBefore"))
|
1375
1378
|
ListCompilationJobsRequest.add_member(:name_contains, Shapes::ShapeRef.new(shape: NameContains, location_name: "NameContains"))
|
1376
1379
|
ListCompilationJobsRequest.add_member(:status_equals, Shapes::ShapeRef.new(shape: CompilationJobStatus, location_name: "StatusEquals"))
|
1380
|
+
ListCompilationJobsRequest.add_member(:sort_by, Shapes::ShapeRef.new(shape: ListCompilationJobsSortBy, location_name: "SortBy"))
|
1381
|
+
ListCompilationJobsRequest.add_member(:sort_order, Shapes::ShapeRef.new(shape: SortOrder, location_name: "SortOrder"))
|
1377
1382
|
ListCompilationJobsRequest.struct_class = Types::ListCompilationJobsRequest
|
1378
1383
|
|
1379
1384
|
ListCompilationJobsResponse.add_member(:compilation_job_summaries, Shapes::ShapeRef.new(shape: CompilationJobSummaries, required: true, location_name: "CompilationJobSummaries"))
|
@@ -143,7 +143,7 @@ module Aws::SageMaker
|
|
143
143
|
# Specifies the validation and image scan statuses of the algorithm.
|
144
144
|
#
|
145
145
|
# @!attribute [rw] validation_statuses
|
146
|
-
# The status of
|
146
|
+
# The status of algorithm validation.
|
147
147
|
# @return [Array<Types::AlgorithmStatusItem>]
|
148
148
|
#
|
149
149
|
# @!attribute [rw] image_scan_statuses
|
@@ -162,7 +162,7 @@ module Aws::SageMaker
|
|
162
162
|
#
|
163
163
|
# @!attribute [rw] name
|
164
164
|
# The name of the algorithm for which the overall status is being
|
165
|
-
#
|
165
|
+
# reported.
|
166
166
|
# @return [String]
|
167
167
|
#
|
168
168
|
# @!attribute [rw] status
|
@@ -170,7 +170,7 @@ module Aws::SageMaker
|
|
170
170
|
# @return [String]
|
171
171
|
#
|
172
172
|
# @!attribute [rw] failure_reason
|
173
|
-
#
|
173
|
+
# if the overall status is `Failed`, the reason for the failure.
|
174
174
|
# @return [String]
|
175
175
|
#
|
176
176
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AlgorithmStatusItem AWS API Documentation
|
@@ -185,7 +185,7 @@ module Aws::SageMaker
|
|
185
185
|
# Provides summary information about an algorithm.
|
186
186
|
#
|
187
187
|
# @!attribute [rw] algorithm_name
|
188
|
-
# The name of the algorithm
|
188
|
+
# The name of the algorithm that is described by the summary.
|
189
189
|
# @return [String]
|
190
190
|
#
|
191
191
|
# @!attribute [rw] algorithm_arn
|
@@ -193,7 +193,7 @@ module Aws::SageMaker
|
|
193
193
|
# @return [String]
|
194
194
|
#
|
195
195
|
# @!attribute [rw] algorithm_description
|
196
|
-
# A brief
|
196
|
+
# A brief description of the algorithm.
|
197
197
|
# @return [String]
|
198
198
|
#
|
199
199
|
# @!attribute [rw] creation_time
|
@@ -281,7 +281,7 @@ module Aws::SageMaker
|
|
281
281
|
# },
|
282
282
|
# content_type: "ContentType",
|
283
283
|
# compression_type: "None", # accepts None, Gzip
|
284
|
-
# split_type: "None", # accepts None, Line, RecordIO
|
284
|
+
# split_type: "None", # accepts None, Line, RecordIO, TFRecord
|
285
285
|
# },
|
286
286
|
# transform_output: { # required
|
287
287
|
# s3_output_path: "S3Uri", # required
|
@@ -387,7 +387,7 @@ module Aws::SageMaker
|
|
387
387
|
# },
|
388
388
|
# content_type: "ContentType",
|
389
389
|
# compression_type: "None", # accepts None, Gzip
|
390
|
-
# split_type: "None", # accepts None, Line, RecordIO
|
390
|
+
# split_type: "None", # accepts None, Line, RecordIO, TFRecord
|
391
391
|
# },
|
392
392
|
# transform_output: { # required
|
393
393
|
# s3_output_path: "S3Uri", # required
|
@@ -436,25 +436,64 @@ module Aws::SageMaker
|
|
436
436
|
# The Amazon Resource Name (ARN) of a Lambda function implements the
|
437
437
|
# logic for annotation consolidation.
|
438
438
|
#
|
439
|
-
#
|
440
|
-
#
|
439
|
+
# For the built-in bounding box, image classification, semantic
|
440
|
+
# segmentation, and text classification task types, Amazon SageMaker
|
441
|
+
# Ground Truth provides the following Lambda functions:
|
441
442
|
#
|
442
443
|
# * *Bounding box* - Finds the most similar boxes from different
|
443
444
|
# workers based on the Jaccard index of the boxes.
|
444
445
|
#
|
445
|
-
# `arn:aws:lambda:
|
446
|
+
# `arn:aws:lambda:us-east-1:432418664414:function:ACS-BoundingBox`
|
447
|
+
#
|
448
|
+
# `arn:aws:lambda:us-east-2:266458841044:function:ACS-BoundingBox`
|
449
|
+
#
|
450
|
+
# `arn:aws:lambda:us-west-2:081040173940:function:ACS-BoundingBox`
|
451
|
+
#
|
452
|
+
# `arn:aws:lambda:eu-west-1:568282634449:function:ACS-BoundingBox`
|
453
|
+
#
|
454
|
+
# `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-BoundingBox`
|
446
455
|
#
|
447
456
|
# * *Image classification* - Uses a variant of the Expectation
|
448
457
|
# Maximization approach to estimate the true class of an image based
|
449
458
|
# on annotations from individual workers.
|
450
459
|
#
|
451
|
-
# `arn:aws:lambda:
|
460
|
+
# `arn:aws:lambda:us-east-1:432418664414:function:ACS-ImageMultiClass`
|
461
|
+
#
|
462
|
+
# `arn:aws:lambda:us-east-2:266458841044:function:ACS-ImageMultiClass`
|
463
|
+
#
|
464
|
+
# `arn:aws:lambda:us-west-2:081040173940:function:ACS-ImageMultiClass`
|
465
|
+
#
|
466
|
+
# `arn:aws:lambda:eu-west-1:568282634449:function:ACS-ImageMultiClass`
|
467
|
+
#
|
468
|
+
# `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-ImageMultiClass`
|
469
|
+
#
|
470
|
+
# * *Semantic segmentation* - Treats each pixel in an image as a
|
471
|
+
# multi-class classification and treats pixel annotations from
|
472
|
+
# workers as "votes" for the correct label.
|
473
|
+
#
|
474
|
+
# `arn:aws:lambda:us-east-1:432418664414:function:ACS-SemanticSegmentation`
|
475
|
+
#
|
476
|
+
# `arn:aws:lambda:us-east-2:266458841044:function:ACS-SemanticSegmentation`
|
477
|
+
#
|
478
|
+
# `arn:aws:lambda:us-west-2:081040173940:function:ACS-SemanticSegmentation`
|
479
|
+
#
|
480
|
+
# `arn:aws:lambda:eu-west-1:568282634449:function:ACS-SemanticSegmentation`
|
481
|
+
#
|
482
|
+
# `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-SemanticSegmentation`
|
452
483
|
#
|
453
484
|
# * *Text classification* - Uses a variant of the Expectation
|
454
485
|
# Maximization approach to estimate the true class of text based on
|
455
486
|
# annotations from individual workers.
|
456
487
|
#
|
457
|
-
# `arn:aws:lambda:
|
488
|
+
# `arn:aws:lambda:us-east-1:432418664414:function:ACS-TextMultiClass`
|
489
|
+
#
|
490
|
+
# `arn:aws:lambda:us-east-2:266458841044:function:ACS-TextMultiClass`
|
491
|
+
#
|
492
|
+
# `arn:aws:lambda:us-west-2:081040173940:function:ACS-TextMultiClass`
|
493
|
+
#
|
494
|
+
# `arn:aws:lambda:eu-west-1:568282634449:function:ACS-TextMultiClass`
|
495
|
+
#
|
496
|
+
# `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-TextMultiClass`
|
458
497
|
#
|
459
498
|
# For more information, see [Annotation Consolidation][1].
|
460
499
|
#
|
@@ -637,7 +676,7 @@ module Aws::SageMaker
|
|
637
676
|
# }
|
638
677
|
#
|
639
678
|
# @!attribute [rw] name
|
640
|
-
# The name of the channel
|
679
|
+
# The name of the channel.
|
641
680
|
# @return [String]
|
642
681
|
#
|
643
682
|
# @!attribute [rw] description
|
@@ -764,6 +803,10 @@ module Aws::SageMaker
|
|
764
803
|
# The time when the model compilation job was created.
|
765
804
|
# @return [Time]
|
766
805
|
#
|
806
|
+
# @!attribute [rw] compilation_start_time
|
807
|
+
# The time when the model compilation job started.
|
808
|
+
# @return [Time]
|
809
|
+
#
|
767
810
|
# @!attribute [rw] compilation_end_time
|
768
811
|
# The time when the model compilation job completed.
|
769
812
|
# @return [Time]
|
@@ -787,6 +830,7 @@ module Aws::SageMaker
|
|
787
830
|
:compilation_job_name,
|
788
831
|
:compilation_job_arn,
|
789
832
|
:creation_time,
|
833
|
+
:compilation_start_time,
|
790
834
|
:compilation_end_time,
|
791
835
|
:compilation_target_device,
|
792
836
|
:last_modified_time,
|
@@ -838,7 +882,7 @@ module Aws::SageMaker
|
|
838
882
|
# you provide. AWS STS is activated in your IAM user account by
|
839
883
|
# default. If you previously deactivated AWS STS for a region, you
|
840
884
|
# need to reactivate AWS STS for that region. For more information,
|
841
|
-
# see [Activating and Deactivating AWS STS
|
885
|
+
# see [Activating and Deactivating AWS STS in an AWS Region][1] in the
|
842
886
|
# *AWS Identity and Access Management User Guide*.
|
843
887
|
#
|
844
888
|
#
|
@@ -853,7 +897,7 @@ module Aws::SageMaker
|
|
853
897
|
# @return [Hash<String,String>]
|
854
898
|
#
|
855
899
|
# @!attribute [rw] model_package_name
|
856
|
-
# The name of the model package
|
900
|
+
# The name of the model package to use to create the model.
|
857
901
|
# @return [String]
|
858
902
|
#
|
859
903
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ContainerDefinition AWS API Documentation
|
@@ -1060,7 +1104,7 @@ module Aws::SageMaker
|
|
1060
1104
|
# },
|
1061
1105
|
# content_type: "ContentType",
|
1062
1106
|
# compression_type: "None", # accepts None, Gzip
|
1063
|
-
# split_type: "None", # accepts None, Line, RecordIO
|
1107
|
+
# split_type: "None", # accepts None, Line, RecordIO, TFRecord
|
1064
1108
|
# },
|
1065
1109
|
# transform_output: { # required
|
1066
1110
|
# s3_output_path: "S3Uri", # required
|
@@ -1081,8 +1125,7 @@ module Aws::SageMaker
|
|
1081
1125
|
# }
|
1082
1126
|
#
|
1083
1127
|
# @!attribute [rw] algorithm_name
|
1084
|
-
# The name of the algorithm.
|
1085
|
-
# Valid characters are a-z, A-Z, 0-9, and - (hyphen).
|
1128
|
+
# The name of the algorithm.
|
1086
1129
|
# @return [String]
|
1087
1130
|
#
|
1088
1131
|
# @!attribute [rw] algorithm_description
|
@@ -1167,7 +1210,7 @@ module Aws::SageMaker
|
|
1167
1210
|
# {
|
1168
1211
|
# code_repository_name: "EntityName", # required
|
1169
1212
|
# git_config: { # required
|
1170
|
-
# repository_url: "
|
1213
|
+
# repository_url: "GitConfigUrl", # required
|
1171
1214
|
# branch: "Branch",
|
1172
1215
|
# secret_arn: "SecretArn",
|
1173
1216
|
# },
|
@@ -1694,8 +1737,11 @@ module Aws::SageMaker
|
|
1694
1737
|
# @!attribute [rw] label_attribute_name
|
1695
1738
|
# The attribute name to use for the label in the output manifest file.
|
1696
1739
|
# This is the key for the key/value pair formed with the label that a
|
1697
|
-
# worker assigns to the object. The name can't end with
|
1698
|
-
#
|
1740
|
+
# worker assigns to the object. The name can't end with
|
1741
|
+
# "-metadata". If you are running a semantic segmentation labeling
|
1742
|
+
# job, the attribute name must end with "-ref". If you are running
|
1743
|
+
# any other kind of labeling job, the attribute name must not end with
|
1744
|
+
# "-ref".
|
1699
1745
|
# @return [String]
|
1700
1746
|
#
|
1701
1747
|
# @!attribute [rw] input_config
|
@@ -1719,6 +1765,38 @@ module Aws::SageMaker
|
|
1719
1765
|
# @!attribute [rw] label_category_config_s3_uri
|
1720
1766
|
# The S3 URL of the file that defines the categories used to label the
|
1721
1767
|
# data objects.
|
1768
|
+
#
|
1769
|
+
# The file is a JSON structure in the following format:
|
1770
|
+
#
|
1771
|
+
# `\{`
|
1772
|
+
#
|
1773
|
+
# ` "document-version": "2018-11-28"`
|
1774
|
+
#
|
1775
|
+
# ` "labels": [`
|
1776
|
+
#
|
1777
|
+
# ` \{`
|
1778
|
+
#
|
1779
|
+
# ` "label": "label 1"`
|
1780
|
+
#
|
1781
|
+
# ` \},`
|
1782
|
+
#
|
1783
|
+
# ` \{`
|
1784
|
+
#
|
1785
|
+
# ` "label": "label 2"`
|
1786
|
+
#
|
1787
|
+
# ` \},`
|
1788
|
+
#
|
1789
|
+
# ` ...`
|
1790
|
+
#
|
1791
|
+
# ` \{`
|
1792
|
+
#
|
1793
|
+
# ` "label": "label n"`
|
1794
|
+
#
|
1795
|
+
# ` \}`
|
1796
|
+
#
|
1797
|
+
# ` ]`
|
1798
|
+
#
|
1799
|
+
# `\}`
|
1722
1800
|
# @return [String]
|
1723
1801
|
#
|
1724
1802
|
# @!attribute [rw] stopping_conditions
|
@@ -1945,7 +2023,7 @@ module Aws::SageMaker
|
|
1945
2023
|
# },
|
1946
2024
|
# content_type: "ContentType",
|
1947
2025
|
# compression_type: "None", # accepts None, Gzip
|
1948
|
-
# split_type: "None", # accepts None, Line, RecordIO
|
2026
|
+
# split_type: "None", # accepts None, Line, RecordIO, TFRecord
|
1949
2027
|
# },
|
1950
2028
|
# transform_output: { # required
|
1951
2029
|
# s3_output_path: "S3Uri", # required
|
@@ -2097,7 +2175,13 @@ module Aws::SageMaker
|
|
2097
2175
|
# @!attribute [rw] kms_key_id
|
2098
2176
|
# If you provide a AWS KMS key ID, Amazon SageMaker uses it to encrypt
|
2099
2177
|
# data at rest on the ML storage volume that is attached to your
|
2100
|
-
# notebook instance.
|
2178
|
+
# notebook instance. The KMS key you provide must be enabled. For
|
2179
|
+
# information, see [Enabling and Disabling Keys][1] in the *AWS Key
|
2180
|
+
# Management Service Developer Guide*.
|
2181
|
+
#
|
2182
|
+
#
|
2183
|
+
#
|
2184
|
+
# [1]: http://docs.aws.amazon.com/kms/latest/developerguide/enabling-keys.html
|
2101
2185
|
# @return [String]
|
2102
2186
|
#
|
2103
2187
|
# @!attribute [rw] tags
|
@@ -2396,7 +2480,7 @@ module Aws::SageMaker
|
|
2396
2480
|
#
|
2397
2481
|
# @!attribute [rw] role_arn
|
2398
2482
|
# The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker
|
2399
|
-
#
|
2483
|
+
# can assume to perform tasks on your behalf.
|
2400
2484
|
#
|
2401
2485
|
# During model training, Amazon SageMaker needs your permission to
|
2402
2486
|
# read input data from an S3 bucket, download a Docker image that
|
@@ -2549,7 +2633,7 @@ module Aws::SageMaker
|
|
2549
2633
|
# },
|
2550
2634
|
# content_type: "ContentType",
|
2551
2635
|
# compression_type: "None", # accepts None, Gzip
|
2552
|
-
# split_type: "None", # accepts None, Line, RecordIO
|
2636
|
+
# split_type: "None", # accepts None, Line, RecordIO, TFRecord
|
2553
2637
|
# },
|
2554
2638
|
# transform_output: { # required
|
2555
2639
|
# s3_output_path: "S3Uri", # required
|
@@ -3035,7 +3119,7 @@ module Aws::SageMaker
|
|
3035
3119
|
# @return [String]
|
3036
3120
|
#
|
3037
3121
|
# @!attribute [rw] algorithm_arn
|
3038
|
-
# The Amazon Resource Name (ARN) of the algorithm
|
3122
|
+
# The Amazon Resource Name (ARN) of the algorithm.
|
3039
3123
|
# @return [String]
|
3040
3124
|
#
|
3041
3125
|
# @!attribute [rw] algorithm_description
|
@@ -3584,6 +3668,38 @@ module Aws::SageMaker
|
|
3584
3668
|
# @!attribute [rw] label_category_config_s3_uri
|
3585
3669
|
# The S3 location of the JSON file that defines the categories used to
|
3586
3670
|
# label data objects.
|
3671
|
+
#
|
3672
|
+
# The file is a JSON structure in the following format:
|
3673
|
+
#
|
3674
|
+
# `\{`
|
3675
|
+
#
|
3676
|
+
# ` "document-version": "2018-11-28"`
|
3677
|
+
#
|
3678
|
+
# ` "labels": [`
|
3679
|
+
#
|
3680
|
+
# ` \{`
|
3681
|
+
#
|
3682
|
+
# ` "label": "label 1"`
|
3683
|
+
#
|
3684
|
+
# ` \},`
|
3685
|
+
#
|
3686
|
+
# ` \{`
|
3687
|
+
#
|
3688
|
+
# ` "label": "label 2"`
|
3689
|
+
#
|
3690
|
+
# ` \},`
|
3691
|
+
#
|
3692
|
+
# ` ...`
|
3693
|
+
#
|
3694
|
+
# ` \{`
|
3695
|
+
#
|
3696
|
+
# ` "label": "label n"`
|
3697
|
+
#
|
3698
|
+
# ` \}`
|
3699
|
+
#
|
3700
|
+
# ` ]`
|
3701
|
+
#
|
3702
|
+
# `\}`
|
3587
3703
|
# @return [String]
|
3588
3704
|
#
|
3589
3705
|
# @!attribute [rw] stopping_conditions
|
@@ -3744,7 +3860,7 @@ module Aws::SageMaker
|
|
3744
3860
|
# @return [String]
|
3745
3861
|
#
|
3746
3862
|
# @!attribute [rw] model_package_description
|
3747
|
-
# A brief summary
|
3863
|
+
# A brief summary of the model package.
|
3748
3864
|
# @return [String]
|
3749
3865
|
#
|
3750
3866
|
# @!attribute [rw] creation_time
|
@@ -4575,7 +4691,7 @@ module Aws::SageMaker
|
|
4575
4691
|
# training job objects that have a value in the `FailureReason` field.
|
4576
4692
|
#
|
4577
4693
|
# If you specify a `Value`, but not an `Operator`, Amazon SageMaker uses
|
4578
|
-
# the equals operator as
|
4694
|
+
# the equals operator as the default.
|
4579
4695
|
#
|
4580
4696
|
# In search, there are several property types:
|
4581
4697
|
#
|
@@ -4599,11 +4715,11 @@ module Aws::SageMaker
|
|
4599
4715
|
# HyperParameters
|
4600
4716
|
#
|
4601
4717
|
# : To define a hyperparameter filter, enter a value with the form
|
4602
|
-
# `"
|
4603
|
-
# as a decimal in a comparison if the specified `Value` is
|
4604
|
-
# decimal value. If the specified `Value` is an integer, the
|
4605
|
-
# hyperparameter values are treated as integers. For example,
|
4606
|
-
# following filter is satisfied by training jobs with a
|
4718
|
+
# `"HyperParameters.<name>"`. Decimal hyperparameter values are
|
4719
|
+
# treated as a decimal in a comparison if the specified `Value` is
|
4720
|
+
# also a decimal value. If the specified `Value` is an integer, the
|
4721
|
+
# decimal hyperparameter values are treated as integers. For example,
|
4722
|
+
# the following filter is satisfied by training jobs with a
|
4607
4723
|
# `"learning_rate"` hyperparameter that is less than `"0.5"`\:
|
4608
4724
|
#
|
4609
4725
|
# ` \{`
|
@@ -4630,9 +4746,10 @@ module Aws::SageMaker
|
|
4630
4746
|
# }
|
4631
4747
|
#
|
4632
4748
|
# @!attribute [rw] name
|
4633
|
-
# A property name. For example, `TrainingJobName`.
|
4634
|
-
#
|
4635
|
-
# resource.
|
4749
|
+
# A property name. For example, `TrainingJobName`. For the list of
|
4750
|
+
# valid property names returned in a search result for each supported
|
4751
|
+
# resource, see TrainingJob properties. You must specify a valid
|
4752
|
+
# property name for the resource.
|
4636
4753
|
# @return [String]
|
4637
4754
|
#
|
4638
4755
|
# @!attribute [rw] operator
|
@@ -4672,11 +4789,13 @@ module Aws::SageMaker
|
|
4672
4789
|
#
|
4673
4790
|
# : Only supported for text-based properties. The word-list of the
|
4674
4791
|
# property contains the specified `Value`.
|
4792
|
+
#
|
4793
|
+
# If you have specified a filter `Value`, the default is `Equals`.
|
4675
4794
|
# @return [String]
|
4676
4795
|
#
|
4677
4796
|
# @!attribute [rw] value
|
4678
|
-
# A value used with `Resource` and `Operator` to
|
4679
|
-
#
|
4797
|
+
# A value used with `Resource` and `Operator` to determine if objects
|
4798
|
+
# satisfy the filter's condition. For numerical properties, `Value`
|
4680
4799
|
# must be an integer or floating-point decimal. For timestamp
|
4681
4800
|
# properties, `Value` must be an ISO 8601 date-time string of the
|
4682
4801
|
# following format: `YYYY-mm-dd'T'HH:MM:SS`.
|
@@ -4766,7 +4885,7 @@ module Aws::SageMaker
|
|
4766
4885
|
# data as a hash:
|
4767
4886
|
#
|
4768
4887
|
# {
|
4769
|
-
# repository_url: "
|
4888
|
+
# repository_url: "GitConfigUrl", # required
|
4770
4889
|
# branch: "Branch",
|
4771
4890
|
# secret_arn: "SecretArn",
|
4772
4891
|
# }
|
@@ -4776,7 +4895,7 @@ module Aws::SageMaker
|
|
4776
4895
|
# @return [String]
|
4777
4896
|
#
|
4778
4897
|
# @!attribute [rw] branch
|
4779
|
-
# The default
|
4898
|
+
# The default beach for the git repository.
|
4780
4899
|
# @return [String]
|
4781
4900
|
#
|
4782
4901
|
# @!attribute [rw] secret_arn
|
@@ -4867,6 +4986,60 @@ module Aws::SageMaker
|
|
4867
4986
|
# The Amazon Resource Name (ARN) of a Lambda function that is run
|
4868
4987
|
# before a data object is sent to a human worker. Use this function to
|
4869
4988
|
# provide input to a custom labeling job.
|
4989
|
+
#
|
4990
|
+
# For the built-in bounding box, image classification, semantic
|
4991
|
+
# segmentation, and text classification task types, Amazon SageMaker
|
4992
|
+
# Ground Truth provides the following Lambda functions:
|
4993
|
+
#
|
4994
|
+
# **US East (Northern Virginia) (us-east-1):**
|
4995
|
+
#
|
4996
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:PRE-BoundingBox`
|
4997
|
+
#
|
4998
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:PRE-ImageMultiClass`
|
4999
|
+
#
|
5000
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:PRE-SemanticSegmentation`
|
5001
|
+
#
|
5002
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:PRE-TextMultiClass`
|
5003
|
+
#
|
5004
|
+
# **US East (Ohio) (us-east-2):**
|
5005
|
+
#
|
5006
|
+
# * `arn:aws:lambda:us-east-2:266458841044:function:PRE-BoundingBox`
|
5007
|
+
#
|
5008
|
+
# * `arn:aws:lambda:us-east-2:266458841044:function:PRE-ImageMultiClass`
|
5009
|
+
#
|
5010
|
+
# * `arn:aws:lambda:us-east-2:266458841044:function:PRE-SemanticSegmentation`
|
5011
|
+
#
|
5012
|
+
# * `arn:aws:lambda:us-east-2:266458841044:function:PRE-TextMultiClass`
|
5013
|
+
#
|
5014
|
+
# **US West (Oregon) (us-west-2):**
|
5015
|
+
#
|
5016
|
+
# * `arn:aws:lambda:us-west-2:081040173940:function:PRE-BoundingBox`
|
5017
|
+
#
|
5018
|
+
# * `arn:aws:lambda:us-west-2:081040173940:function:PRE-ImageMultiClass`
|
5019
|
+
#
|
5020
|
+
# * `arn:aws:lambda:us-west-2:081040173940:function:PRE-SemanticSegmentation`
|
5021
|
+
#
|
5022
|
+
# * `arn:aws:lambda:us-west-2:081040173940:function:PRE-TextMultiClass`
|
5023
|
+
#
|
5024
|
+
# **EU (Ireland) (eu-west-1):**
|
5025
|
+
#
|
5026
|
+
# * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-BoundingBox`
|
5027
|
+
#
|
5028
|
+
# * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-ImageMultiClass`
|
5029
|
+
#
|
5030
|
+
# * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-SemanticSegmentation`
|
5031
|
+
#
|
5032
|
+
# * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-TextMultiClass`
|
5033
|
+
#
|
5034
|
+
# **Asia Pacific (Tokyo (ap-northeast-1):**
|
5035
|
+
#
|
5036
|
+
# * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-BoundingBox`
|
5037
|
+
#
|
5038
|
+
# * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-ImageMultiClass`
|
5039
|
+
#
|
5040
|
+
# * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-SemanticSegmentation`
|
5041
|
+
#
|
5042
|
+
# * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-TextMultiClass`
|
4870
5043
|
# @return [String]
|
4871
5044
|
#
|
4872
5045
|
# @!attribute [rw] task_keywords
|
@@ -5138,7 +5311,8 @@ module Aws::SageMaker
|
|
5138
5311
|
#
|
5139
5312
|
# @!attribute [rw] algorithm_specification
|
5140
5313
|
# The HyperParameterAlgorithmSpecification object that specifies the
|
5141
|
-
# algorithm to use for the training jobs that the tuning job
|
5314
|
+
# resource algorithm to use for the training jobs that the tuning job
|
5315
|
+
# launches.
|
5142
5316
|
# @return [Types::HyperParameterAlgorithmSpecification]
|
5143
5317
|
#
|
5144
5318
|
# @!attribute [rw] role_arn
|
@@ -5199,7 +5373,7 @@ module Aws::SageMaker
|
|
5199
5373
|
# cluster for distributed training. If network isolation is used for
|
5200
5374
|
# training jobs that are configured to use a VPC, Amazon SageMaker
|
5201
5375
|
# downloads and uploads customer data and model artifacts through the
|
5202
|
-
#
|
5376
|
+
# specified VPC, but the training container does not have network
|
5203
5377
|
# access.
|
5204
5378
|
#
|
5205
5379
|
# <note markdown="1"> The Semantic Segmentation built-in algorithm does not support
|
@@ -5234,8 +5408,7 @@ module Aws::SageMaker
|
|
5234
5408
|
# @return [String]
|
5235
5409
|
#
|
5236
5410
|
# @!attribute [rw] tuning_job_name
|
5237
|
-
# The
|
5238
|
-
# training job.
|
5411
|
+
# The HyperParameter tuning job that launched the training job.
|
5239
5412
|
# @return [String]
|
5240
5413
|
#
|
5241
5414
|
# @!attribute [rw] creation_time
|
@@ -5372,7 +5545,8 @@ module Aws::SageMaker
|
|
5372
5545
|
#
|
5373
5546
|
# @!attribute [rw] training_job_early_stopping_type
|
5374
5547
|
# Specifies whether to use early stopping for training jobs launched
|
5375
|
-
# by the hyperparameter tuning job.
|
5548
|
+
# by the hyperparameter tuning job. This can be one of the following
|
5549
|
+
# values (the default value is `OFF`):
|
5376
5550
|
#
|
5377
5551
|
# OFF
|
5378
5552
|
#
|
@@ -5382,8 +5556,13 @@ module Aws::SageMaker
|
|
5382
5556
|
# AUTO
|
5383
5557
|
#
|
5384
5558
|
# : Amazon SageMaker stops training jobs launched by the
|
5385
|
-
# hyperparameter tuning job when they are
|
5386
|
-
#
|
5559
|
+
# hyperparameter tuning job when they are unlikely to perform better
|
5560
|
+
# than previously completed training jobs. For more information, see
|
5561
|
+
# [Stop Training Jobs Early][1].
|
5562
|
+
#
|
5563
|
+
#
|
5564
|
+
#
|
5565
|
+
# [1]: http://docs.aws.amazon.com/sagemaker/latest/dg/automatic-model-tuning-early-stopping.html
|
5387
5566
|
# @return [String]
|
5388
5567
|
#
|
5389
5568
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/HyperParameterTuningJobConfig AWS API Documentation
|
@@ -5656,28 +5835,68 @@ module Aws::SageMaker
|
|
5656
5835
|
# trained model with a JSON dictionary form. The data inputs are
|
5657
5836
|
# InputConfig$Framework specific.
|
5658
5837
|
#
|
5659
|
-
# * `
|
5660
|
-
#
|
5661
|
-
#
|
5838
|
+
# * `TensorFlow`\: You must specify the name and shape (NHWC format)
|
5839
|
+
# of the expected data inputs using a dictionary format for your
|
5840
|
+
# trained model. The dictionary formats required for the console and
|
5841
|
+
# CLI are different.
|
5842
|
+
#
|
5843
|
+
# * Examples for one input:
|
5844
|
+
#
|
5845
|
+
# * If using the console, `\{"input":[1,1024,1024,3]\}`
|
5846
|
+
#
|
5847
|
+
# * If using the CLI, `\{"input":[1,1024,1024,3]\}`
|
5848
|
+
#
|
5849
|
+
# * Examples for two inputs:
|
5850
|
+
#
|
5851
|
+
# * If using the console, `\{"data1": [1,28,28,1],
|
5852
|
+
# "data2":[1,28,28,1]\}`
|
5853
|
+
#
|
5854
|
+
# * If using the CLI, `\{"data1": [1,28,28,1],
|
5855
|
+
# "data2":[1,28,28,1]\}`
|
5856
|
+
#
|
5857
|
+
# * `MXNET/ONNX`\: You must specify the name and shape (NCHW format)
|
5858
|
+
# of the expected data inputs in order using a dictionary format for
|
5859
|
+
# your trained model. The dictionary formats required for the
|
5860
|
+
# console and CLI are different.
|
5861
|
+
#
|
5862
|
+
# * Examples for one input:
|
5863
|
+
#
|
5864
|
+
# * If using the console, `\{"data":[1,3,1024,1024]\}`
|
5865
|
+
#
|
5866
|
+
# * If using the CLI, `\{"data":[1,3,1024,1024]\}`
|
5867
|
+
#
|
5868
|
+
# * Examples for two inputs:
|
5869
|
+
#
|
5870
|
+
# * If using the console, `\{"var1": [1,1,28,28],
|
5871
|
+
# "var2":[1,1,28,28]\} `
|
5872
|
+
#
|
5873
|
+
# * If using the CLI, `\{"var1": [1,1,28,28],
|
5874
|
+
# "var2":[1,1,28,28]\}`
|
5662
5875
|
#
|
5663
|
-
#
|
5876
|
+
# * `PyTorch`\: You can either specify the name and shape (NCHW
|
5877
|
+
# format) of expected data inputs in order using a dictionary format
|
5878
|
+
# for your trained model or you can specify the shape only using a
|
5879
|
+
# list format. The dictionary formats required for the console and
|
5880
|
+
# CLI are different. The list formats for the console and CLI are
|
5881
|
+
# the same.
|
5664
5882
|
#
|
5665
|
-
# *
|
5666
|
-
# ‘var2’:[1,1,28,28]\}`
|
5883
|
+
# * Examples for one input in dictionary format:
|
5667
5884
|
#
|
5668
|
-
#
|
5669
|
-
# data inputs in order using a dictionary format for your trained
|
5670
|
-
# model or you can specify the shape only using a list format.
|
5885
|
+
# * If using the console, `\{"input0":[1,3,224,224]\}`
|
5671
5886
|
#
|
5672
|
-
#
|
5673
|
-
# `\{‘input0’:[1,3,224,234]\}`
|
5887
|
+
# * If using the CLI, `\{"input0":[1,3,224,224]\}`
|
5674
5888
|
#
|
5675
|
-
# * Example
|
5889
|
+
# * Example for one input in list format: `[[1,3,224,224]]`
|
5676
5890
|
#
|
5677
|
-
# *
|
5678
|
-
# `\{‘input0’:[1,3,224,234], 'input1':[1,3,224,224]\}`
|
5891
|
+
# * Examples for two inputs in dictionary format:
|
5679
5892
|
#
|
5680
|
-
#
|
5893
|
+
# * If using the console, `\{"input0":[1,3,224,224],
|
5894
|
+
# "input1":[1,3,224,224]\}`
|
5895
|
+
#
|
5896
|
+
# * If using the CLI, `\{"input0":[1,3,224,224],
|
5897
|
+
# "input1":[1,3,224,224]\} `
|
5898
|
+
#
|
5899
|
+
# * Example for two inputs in list format: `[[1,3,224,224],
|
5681
5900
|
# [1,3,224,224]]`
|
5682
5901
|
#
|
5683
5902
|
# * `XGBOOST`\: input data name and shape are not needed.
|
@@ -6368,6 +6587,8 @@ module Aws::SageMaker
|
|
6368
6587
|
# last_modified_time_before: Time.now,
|
6369
6588
|
# name_contains: "NameContains",
|
6370
6589
|
# status_equals: "INPROGRESS", # accepts INPROGRESS, COMPLETED, FAILED, STARTING, STOPPING, STOPPED
|
6590
|
+
# sort_by: "Name", # accepts Name, CreationTime, Status
|
6591
|
+
# sort_order: "Ascending", # accepts Ascending, Descending
|
6371
6592
|
# }
|
6372
6593
|
#
|
6373
6594
|
# @!attribute [rw] next_token
|
@@ -6411,6 +6632,14 @@ module Aws::SageMaker
|
|
6411
6632
|
# DescribeCompilationJobResponse$CompilationJobStatus status.
|
6412
6633
|
# @return [String]
|
6413
6634
|
#
|
6635
|
+
# @!attribute [rw] sort_by
|
6636
|
+
# The field by which to sort results. The default is `CreationTime`.
|
6637
|
+
# @return [String]
|
6638
|
+
#
|
6639
|
+
# @!attribute [rw] sort_order
|
6640
|
+
# The sort order for results. The default is `Ascending`.
|
6641
|
+
# @return [String]
|
6642
|
+
#
|
6414
6643
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListCompilationJobsRequest AWS API Documentation
|
6415
6644
|
#
|
6416
6645
|
class ListCompilationJobsRequest < Struct.new(
|
@@ -6421,7 +6650,9 @@ module Aws::SageMaker
|
|
6421
6650
|
:last_modified_time_after,
|
6422
6651
|
:last_modified_time_before,
|
6423
6652
|
:name_contains,
|
6424
|
-
:status_equals
|
6653
|
+
:status_equals,
|
6654
|
+
:sort_by,
|
6655
|
+
:sort_order)
|
6425
6656
|
include Aws::Structure
|
6426
6657
|
end
|
6427
6658
|
|
@@ -7842,8 +8073,8 @@ module Aws::SageMaker
|
|
7842
8073
|
# @return [String]
|
7843
8074
|
#
|
7844
8075
|
# @!attribute [rw] image
|
7845
|
-
# The Amazon EC2 Container Registry path where inference
|
7846
|
-
# stored.
|
8076
|
+
# The Amazon EC2 Container Registry (Amazon ECR) path where inference
|
8077
|
+
# code is stored.
|
7847
8078
|
#
|
7848
8079
|
# If you are using your own custom algorithm instead of an algorithm
|
7849
8080
|
# provided by Amazon SageMaker, the inference code must meet Amazon
|
@@ -7869,7 +8100,7 @@ module Aws::SageMaker
|
|
7869
8100
|
# @return [String]
|
7870
8101
|
#
|
7871
8102
|
# @!attribute [rw] product_id
|
7872
|
-
# The ID of the model package.
|
8103
|
+
# The AWS Marketplace product ID of the model package.
|
7873
8104
|
# @return [String]
|
7874
8105
|
#
|
7875
8106
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ModelPackageContainerDefinition AWS API Documentation
|
@@ -7886,7 +8117,7 @@ module Aws::SageMaker
|
|
7886
8117
|
# Specifies the validation and image scan statuses of the model package.
|
7887
8118
|
#
|
7888
8119
|
# @!attribute [rw] validation_statuses
|
7889
|
-
# The status of the
|
8120
|
+
# The validation status of the model package.
|
7890
8121
|
# @return [Array<Types::ModelPackageStatusItem>]
|
7891
8122
|
#
|
7892
8123
|
# @!attribute [rw] image_scan_statuses
|
@@ -7906,7 +8137,7 @@ module Aws::SageMaker
|
|
7906
8137
|
#
|
7907
8138
|
# @!attribute [rw] name
|
7908
8139
|
# The name of the model package for which the overall status is being
|
7909
|
-
#
|
8140
|
+
# reported.
|
7910
8141
|
# @return [String]
|
7911
8142
|
#
|
7912
8143
|
# @!attribute [rw] status
|
@@ -7914,7 +8145,7 @@ module Aws::SageMaker
|
|
7914
8145
|
# @return [String]
|
7915
8146
|
#
|
7916
8147
|
# @!attribute [rw] failure_reason
|
7917
|
-
#
|
8148
|
+
# if the overall status is `Failed`, the reason for the failure.
|
7918
8149
|
# @return [String]
|
7919
8150
|
#
|
7920
8151
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ModelPackageStatusItem AWS API Documentation
|
@@ -7937,7 +8168,7 @@ module Aws::SageMaker
|
|
7937
8168
|
# @return [String]
|
7938
8169
|
#
|
7939
8170
|
# @!attribute [rw] model_package_description
|
7940
|
-
# A brief
|
8171
|
+
# A brief description of the model package.
|
7941
8172
|
# @return [String]
|
7942
8173
|
#
|
7943
8174
|
# @!attribute [rw] creation_time
|
@@ -7959,7 +8190,7 @@ module Aws::SageMaker
|
|
7959
8190
|
include Aws::Structure
|
7960
8191
|
end
|
7961
8192
|
|
7962
|
-
# Contains data such as the inputs and targeted instance types that are
|
8193
|
+
# Contains data, such as the inputs and targeted instance types that are
|
7963
8194
|
# used in the process of validating the model package.
|
7964
8195
|
#
|
7965
8196
|
# The data provided in the validation profile is made available to your
|
@@ -7986,7 +8217,7 @@ module Aws::SageMaker
|
|
7986
8217
|
# },
|
7987
8218
|
# content_type: "ContentType",
|
7988
8219
|
# compression_type: "None", # accepts None, Gzip
|
7989
|
-
# split_type: "None", # accepts None, Line, RecordIO
|
8220
|
+
# split_type: "None", # accepts None, Line, RecordIO, TFRecord
|
7990
8221
|
# },
|
7991
8222
|
# transform_output: { # required
|
7992
8223
|
# s3_output_path: "S3Uri", # required
|
@@ -8046,7 +8277,7 @@ module Aws::SageMaker
|
|
8046
8277
|
# },
|
8047
8278
|
# content_type: "ContentType",
|
8048
8279
|
# compression_type: "None", # accepts None, Gzip
|
8049
|
-
# split_type: "None", # accepts None, Line, RecordIO
|
8280
|
+
# split_type: "None", # accepts None, Line, RecordIO, TFRecord
|
8050
8281
|
# },
|
8051
8282
|
# transform_output: { # required
|
8052
8283
|
# s3_output_path: "S3Uri", # required
|
@@ -8065,7 +8296,7 @@ module Aws::SageMaker
|
|
8065
8296
|
# }
|
8066
8297
|
#
|
8067
8298
|
# @!attribute [rw] validation_role
|
8068
|
-
# The IAM roles to be used for the validation of
|
8299
|
+
# The IAM roles to be used for the validation of the model package.
|
8069
8300
|
# @return [String]
|
8070
8301
|
#
|
8071
8302
|
# @!attribute [rw] validation_profiles
|
@@ -8105,26 +8336,25 @@ module Aws::SageMaker
|
|
8105
8336
|
include Aws::Structure
|
8106
8337
|
end
|
8107
8338
|
|
8108
|
-
#
|
8109
|
-
#
|
8110
|
-
#
|
8111
|
-
# specified in the `NestedFilters` call, each object in the list must
|
8112
|
-
# satisfy the conditions of all of the filters.
|
8339
|
+
# Defines a list of `NestedFilter` objects. To satisfy the conditions
|
8340
|
+
# specified in the `NestedFilters` call, a resource must satisfy the
|
8341
|
+
# conditions of all of the filters.
|
8113
8342
|
#
|
8114
8343
|
# For example, a `NestedFilters` could be defined using the training
|
8115
8344
|
# job's `InputDataConfig` property, this would be defined as a list of
|
8116
8345
|
# `Channel` objects.
|
8117
8346
|
#
|
8118
8347
|
# A `NestedFilters` object contains multiple filters. For example, to
|
8119
|
-
# find all training jobs
|
8120
|
-
# `cat/data` in their`
|
8121
|
-
# a NestedFilters object that
|
8122
|
-
# the following Filter objects
|
8123
|
-
#
|
8124
|
-
# "
|
8125
|
-
#
|
8126
|
-
#
|
8127
|
-
# `
|
8348
|
+
# find all training jobs whose name contains `train` and that have
|
8349
|
+
# `cat/data` in their `S3Uri` (specified in `InputDataConfig`), you need
|
8350
|
+
# to create a `NestedFilters` object that specifies the
|
8351
|
+
# `InputDataConfig` property with the following `Filter` objects:
|
8352
|
+
#
|
8353
|
+
# * `'\{Name:"InputDataConfig.ChannelName", "Operator":"EQUALS",
|
8354
|
+
# "Value":"train"\}',`
|
8355
|
+
#
|
8356
|
+
# * `'\{Name:"InputDataConfig.DataSource.S3DataSource.S3Uri",
|
8357
|
+
# "Operator":"CONTAINS", "Value":"cat/data"\}'`
|
8128
8358
|
#
|
8129
8359
|
# @note When making an API call, you may pass NestedFilters
|
8130
8360
|
# data as a hash:
|
@@ -8141,13 +8371,15 @@ module Aws::SageMaker
|
|
8141
8371
|
# }
|
8142
8372
|
#
|
8143
8373
|
# @!attribute [rw] nested_property_name
|
8144
|
-
#
|
8374
|
+
# The name of the property to use in the nested filters. The value
|
8375
|
+
# must match a listed property name, such as `InputDataConfig`.
|
8145
8376
|
# @return [String]
|
8146
8377
|
#
|
8147
8378
|
# @!attribute [rw] filters
|
8148
|
-
# A list of filters. Each filter acts on a property.
|
8149
|
-
# `
|
8150
|
-
#
|
8379
|
+
# A list of filters. Each filter acts on a property. Filters must
|
8380
|
+
# contain at least one `Filters` value. For example, a `NestedFilters`
|
8381
|
+
# call might include a filter on the `PropertyName` parameter of the
|
8382
|
+
# `InputDataConfig` property:
|
8151
8383
|
# `InputDataConfig.DataSource.S3DataSource.S3Uri`.
|
8152
8384
|
# @return [Array<Types::Filter>]
|
8153
8385
|
#
|
@@ -8415,16 +8647,15 @@ module Aws::SageMaker
|
|
8415
8647
|
#
|
8416
8648
|
# `"arn:aws:kms:us-west-2:111122223333:alias/ExampleAlias"`
|
8417
8649
|
#
|
8418
|
-
# If you don't provide
|
8650
|
+
# If you don't provide a KMS key ID, Amazon SageMaker uses the
|
8419
8651
|
# default KMS key for Amazon S3 for your role's account. For more
|
8420
|
-
# information, see [KMS-Managed Encryption Keys][1] in *Amazon
|
8421
|
-
# Storage Service Developer Guide.*
|
8422
|
-
#
|
8423
|
-
# <note markdown="1"> The KMS key policy must grant permission to the IAM role that you
|
8424
|
-
# specify in your `CreateTrainingJob` request. [Using Key Policies in
|
8425
|
-
# AWS KMS][2] in the *AWS Key Management Service Developer Guide*.
|
8652
|
+
# information, see [KMS-Managed Encryption Keys][1] in the *Amazon
|
8653
|
+
# Simple Storage Service Developer Guide.*
|
8426
8654
|
#
|
8427
|
-
#
|
8655
|
+
# The KMS key policy must grant permission to the IAM role that you
|
8656
|
+
# specify in your `CreateTramsformJob` request. For more information,
|
8657
|
+
# see [Using Key Policies in AWS KMS][2] in the *AWS Key Management
|
8658
|
+
# Service Developer Guide*.
|
8428
8659
|
#
|
8429
8660
|
#
|
8430
8661
|
#
|
@@ -8445,7 +8676,7 @@ module Aws::SageMaker
|
|
8445
8676
|
include Aws::Structure
|
8446
8677
|
end
|
8447
8678
|
|
8448
|
-
# Defines the possible values for categorical,
|
8679
|
+
# Defines the possible values for categorical, continuous, and integer
|
8449
8680
|
# hyperparameters to be used by an algorithm.
|
8450
8681
|
#
|
8451
8682
|
# @note When making an API call, you may pass ParameterRange
|
@@ -8687,7 +8918,8 @@ module Aws::SageMaker
|
|
8687
8918
|
include Aws::Structure
|
8688
8919
|
end
|
8689
8920
|
|
8690
|
-
# A suggestion query for retrieving
|
8921
|
+
# A type of `SuggestionQuery`. A suggestion query for retrieving
|
8922
|
+
# property names that match the specified hint.
|
8691
8923
|
#
|
8692
8924
|
# @note When making an API call, you may pass PropertyNameQuery
|
8693
8925
|
# data as a hash:
|
@@ -8697,8 +8929,9 @@ module Aws::SageMaker
|
|
8697
8929
|
# }
|
8698
8930
|
#
|
8699
8931
|
# @!attribute [rw] property_name_hint
|
8700
|
-
#
|
8701
|
-
# with the
|
8932
|
+
# Text that is part of a property's name. The property names of
|
8933
|
+
# hyperparameter, metric, and tag key names that begin with the
|
8934
|
+
# specified text in the `PropertyNameHint`.
|
8702
8935
|
# @return [String]
|
8703
8936
|
#
|
8704
8937
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/PropertyNameQuery AWS API Documentation
|
@@ -8712,7 +8945,8 @@ module Aws::SageMaker
|
|
8712
8945
|
# specifies a value in the `PropertyNameQuery` field.
|
8713
8946
|
#
|
8714
8947
|
# @!attribute [rw] property_name
|
8715
|
-
# A suggested property name
|
8948
|
+
# A suggested property name based on what you entered in the search
|
8949
|
+
# textbox in the Amazon SageMaker console.
|
8716
8950
|
# @return [String]
|
8717
8951
|
#
|
8718
8952
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/PropertyNameSuggestion AWS API Documentation
|
@@ -8723,12 +8957,84 @@ module Aws::SageMaker
|
|
8723
8957
|
end
|
8724
8958
|
|
8725
8959
|
# Defines the amount of money paid to an Amazon Mechanical Turk worker
|
8726
|
-
# for each task performed.
|
8727
|
-
#
|
8960
|
+
# for each task performed.
|
8961
|
+
#
|
8962
|
+
# Use one of the following prices for bounding box tasks. Prices are in
|
8963
|
+
# US dollars.
|
8964
|
+
#
|
8965
|
+
# * 0\.036
|
8966
|
+
#
|
8967
|
+
# * 0\.048
|
8968
|
+
#
|
8969
|
+
# * 0\.060
|
8970
|
+
#
|
8971
|
+
# * 0\.072
|
8972
|
+
#
|
8973
|
+
# * 0\.120
|
8974
|
+
#
|
8975
|
+
# * 0\.240
|
8976
|
+
#
|
8977
|
+
# * 0\.360
|
8978
|
+
#
|
8979
|
+
# * 0\.480
|
8980
|
+
#
|
8981
|
+
# * 0\.600
|
8982
|
+
#
|
8983
|
+
# * 0\.720
|
8984
|
+
#
|
8985
|
+
# * 0\.840
|
8986
|
+
#
|
8987
|
+
# * 0\.960
|
8988
|
+
#
|
8989
|
+
# * 1\.080
|
8990
|
+
#
|
8991
|
+
# * 1\.200
|
8992
|
+
#
|
8993
|
+
# Use one of the following prices for image classification, text
|
8994
|
+
# classification, and custom tasks. Prices are in US dollars.
|
8995
|
+
#
|
8996
|
+
# * 0\.012
|
8997
|
+
#
|
8998
|
+
# * 0\.024
|
8999
|
+
#
|
9000
|
+
# * 0\.036
|
8728
9001
|
#
|
9002
|
+
# * 0\.048
|
8729
9003
|
#
|
9004
|
+
# * 0\.060
|
8730
9005
|
#
|
8731
|
-
#
|
9006
|
+
# * 0\.072
|
9007
|
+
#
|
9008
|
+
# * 0\.120
|
9009
|
+
#
|
9010
|
+
# * 0\.240
|
9011
|
+
#
|
9012
|
+
# * 0\.360
|
9013
|
+
#
|
9014
|
+
# * 0\.480
|
9015
|
+
#
|
9016
|
+
# * 0\.600
|
9017
|
+
#
|
9018
|
+
# * 0\.720
|
9019
|
+
#
|
9020
|
+
# * 0\.840
|
9021
|
+
#
|
9022
|
+
# * 0\.960
|
9023
|
+
#
|
9024
|
+
# * 1\.080
|
9025
|
+
#
|
9026
|
+
# * 1\.200
|
9027
|
+
#
|
9028
|
+
# Use one of the following prices for semantic segmentation tasks.
|
9029
|
+
# Prices are in US dollars.
|
9030
|
+
#
|
9031
|
+
# * 0\.840
|
9032
|
+
#
|
9033
|
+
# * 0\.960
|
9034
|
+
#
|
9035
|
+
# * 1\.080
|
9036
|
+
#
|
9037
|
+
# * 1\.200
|
8732
9038
|
#
|
8733
9039
|
# @note When making an API call, you may pass PublicWorkforceTaskPrice
|
8734
9040
|
# data as a hash:
|
@@ -8767,7 +9073,7 @@ module Aws::SageMaker
|
|
8767
9073
|
# }
|
8768
9074
|
#
|
8769
9075
|
# @!attribute [rw] ui_template
|
8770
|
-
# A `
|
9076
|
+
# A `Template`object containing the worker UI template to render.
|
8771
9077
|
# @return [Types::UiTemplate]
|
8772
9078
|
#
|
8773
9079
|
# @!attribute [rw] task
|
@@ -8999,7 +9305,7 @@ module Aws::SageMaker
|
|
8999
9305
|
#
|
9000
9306
|
# `s3://customer_bucket/some/prefix/relative/path/to/custdata-1`
|
9001
9307
|
#
|
9002
|
-
# `s3://customer_bucket/some/prefix/relative/path/custdata-
|
9308
|
+
# `s3://customer_bucket/some/prefix/relative/path/custdata-2`
|
9003
9309
|
#
|
9004
9310
|
# `...`
|
9005
9311
|
#
|
@@ -9024,7 +9330,7 @@ module Aws::SageMaker
|
|
9024
9330
|
# Don't choose more ML compute instances for training than available
|
9025
9331
|
# S3 objects. If you do, some nodes won't get any data and you will
|
9026
9332
|
# pay for nodes that aren't getting any training data. This applies
|
9027
|
-
# in both File and
|
9333
|
+
# in both File and Pipe modes. Keep this in mind when developing
|
9028
9334
|
# algorithms.
|
9029
9335
|
#
|
9030
9336
|
# In distributed training, where you use multiple ML compute EC2
|
@@ -9050,8 +9356,10 @@ module Aws::SageMaker
|
|
9050
9356
|
end
|
9051
9357
|
|
9052
9358
|
# A multi-expression that searches for the specified resource or
|
9053
|
-
# resources. All resource objects that satisfy the
|
9054
|
-
# condition are included in the search results.
|
9359
|
+
# resources in a search. All resource objects that satisfy the
|
9360
|
+
# expression's condition are included in the search results. You must
|
9361
|
+
# specify at least one subexpression, filter, or nested filter. A
|
9362
|
+
# `SearchExpression` can contain up to twenty elements.
|
9055
9363
|
#
|
9056
9364
|
# A `SearchExpression` contains the following components:
|
9057
9365
|
#
|
@@ -9064,7 +9372,8 @@ module Aws::SageMaker
|
|
9064
9372
|
# filter is satisfied if a single object in the list satisfies all
|
9065
9373
|
# Boolean expressions.
|
9066
9374
|
#
|
9067
|
-
# * A list of `SearchExpression` objects.
|
9375
|
+
# * A list of `SearchExpression` objects. A search expression object can
|
9376
|
+
# be nested in a list of search expression objects.
|
9068
9377
|
#
|
9069
9378
|
# * A Boolean operator: `And` or `Or`.
|
9070
9379
|
#
|
@@ -9138,7 +9447,7 @@ module Aws::SageMaker
|
|
9138
9447
|
# want every conditional statement in all lists to be satisfied for
|
9139
9448
|
# the entire search expression to be true, specify `And`. If only a
|
9140
9449
|
# single conditional statement needs to be true for the entire search
|
9141
|
-
# expression to be true, specify `Or`.
|
9450
|
+
# expression to be true, specify `Or`. The default value is `And`.
|
9142
9451
|
# @return [String]
|
9143
9452
|
#
|
9144
9453
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SearchExpression AWS API Documentation
|
@@ -9211,16 +9520,20 @@ module Aws::SageMaker
|
|
9211
9520
|
#
|
9212
9521
|
# @!attribute [rw] search_expression
|
9213
9522
|
# A Boolean conditional statement. Resource objects must satisfy this
|
9214
|
-
# condition to be included in search results.
|
9523
|
+
# condition to be included in search results. You must provide at
|
9524
|
+
# least one subexpression, filter, or nested filter. The maximum
|
9525
|
+
# number of recursive `SubExpressions`, `NestedFilters`, and `Filters`
|
9526
|
+
# that can be included in a `SearchExpression` object is 50.
|
9215
9527
|
# @return [Types::SearchExpression]
|
9216
9528
|
#
|
9217
9529
|
# @!attribute [rw] sort_by
|
9218
9530
|
# The name of the resource property used to sort the `SearchResults`.
|
9531
|
+
# The default is `LastModifiedTime`.
|
9219
9532
|
# @return [String]
|
9220
9533
|
#
|
9221
9534
|
# @!attribute [rw] sort_order
|
9222
9535
|
# How `SearchResults` are ordered. Valid values are `Ascending` or
|
9223
|
-
# `Descending`.
|
9536
|
+
# `Descending`. The default is `Descending`.
|
9224
9537
|
# @return [String]
|
9225
9538
|
#
|
9226
9539
|
# @!attribute [rw] next_token
|
@@ -9410,7 +9723,7 @@ module Aws::SageMaker
|
|
9410
9723
|
# }
|
9411
9724
|
#
|
9412
9725
|
# @!attribute [rw] seed
|
9413
|
-
# Determines the shuffling order in `ShuffleConfig
|
9726
|
+
# Determines the shuffling order in `ShuffleConfig` value.
|
9414
9727
|
# @return [Integer]
|
9415
9728
|
#
|
9416
9729
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ShuffleConfig AWS API Documentation
|
@@ -9605,12 +9918,12 @@ module Aws::SageMaker
|
|
9605
9918
|
include Aws::Structure
|
9606
9919
|
end
|
9607
9920
|
|
9608
|
-
# Specifies how long
|
9609
|
-
# the
|
9610
|
-
#
|
9921
|
+
# Specifies how long model training can run. When model training reaches
|
9922
|
+
# the limit, Amazon SageMaker ends the training job. Use this API to cap
|
9923
|
+
# model training cost.
|
9611
9924
|
#
|
9612
9925
|
# To stop a job, Amazon SageMaker sends the algorithm the `SIGTERM`
|
9613
|
-
# signal, which delays job termination
|
9926
|
+
# signal, which delays job termination for120 seconds. Algorithms might
|
9614
9927
|
# use this 120-second window to save the model artifacts, so the results
|
9615
9928
|
# of training is not lost.
|
9616
9929
|
#
|
@@ -9628,10 +9941,10 @@ module Aws::SageMaker
|
|
9628
9941
|
# }
|
9629
9942
|
#
|
9630
9943
|
# @!attribute [rw] max_runtime_in_seconds
|
9631
|
-
# The maximum length of time, in seconds, that the training
|
9632
|
-
#
|
9633
|
-
#
|
9634
|
-
#
|
9944
|
+
# The maximum length of time, in seconds, that the training job can
|
9945
|
+
# run. If model training does not complete during this time, Amazon
|
9946
|
+
# SageMaker ends the job. If value is not specified, default value is
|
9947
|
+
# 1 day. Maximum value is 5 days.
|
9635
9948
|
# @return [Integer]
|
9636
9949
|
#
|
9637
9950
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StoppingCondition AWS API Documentation
|
@@ -9687,8 +10000,9 @@ module Aws::SageMaker
|
|
9687
10000
|
# }
|
9688
10001
|
#
|
9689
10002
|
# @!attribute [rw] property_name_query
|
9690
|
-
# Defines a property name hint. Only
|
9691
|
-
# specified hint are included in the
|
10003
|
+
# A type of `SuggestionQuery`. Defines a property name hint. Only
|
10004
|
+
# property names that match the specified hint are included in the
|
10005
|
+
# response.
|
9692
10006
|
# @return [Types::PropertyNameQuery]
|
9693
10007
|
#
|
9694
10008
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SuggestionQuery AWS API Documentation
|
@@ -9904,7 +10218,7 @@ module Aws::SageMaker
|
|
9904
10218
|
# @return [Array<Types::SecondaryStatusTransition>]
|
9905
10219
|
#
|
9906
10220
|
# @!attribute [rw] final_metric_data_list
|
9907
|
-
# A list of final metric values that are set when the
|
10221
|
+
# A list of final metric values that are set when the training job
|
9908
10222
|
# completes. Used only if the training job was configured to use
|
9909
10223
|
# metrics.
|
9910
10224
|
# @return [Array<Types::MetricData>]
|
@@ -10232,7 +10546,7 @@ module Aws::SageMaker
|
|
10232
10546
|
# @return [Array<Types::ChannelSpecification>]
|
10233
10547
|
#
|
10234
10548
|
# @!attribute [rw] supported_tuning_job_objective_metrics
|
10235
|
-
# A list of the metrics that the
|
10549
|
+
# A list of the metrics that the algorithm emits that can be used as
|
10236
10550
|
# the objective metric in a hyperparameter tuning job.
|
10237
10551
|
# @return [Array<Types::HyperParameterTuningJobObjective>]
|
10238
10552
|
#
|
@@ -10289,7 +10603,7 @@ module Aws::SageMaker
|
|
10289
10603
|
# },
|
10290
10604
|
# content_type: "ContentType",
|
10291
10605
|
# compression_type: "None", # accepts None, Gzip
|
10292
|
-
# split_type: "None", # accepts None, Line, RecordIO
|
10606
|
+
# split_type: "None", # accepts None, Line, RecordIO, TFRecord
|
10293
10607
|
# }
|
10294
10608
|
#
|
10295
10609
|
# @!attribute [rw] data_source
|
@@ -10311,23 +10625,42 @@ module Aws::SageMaker
|
|
10311
10625
|
# @return [String]
|
10312
10626
|
#
|
10313
10627
|
# @!attribute [rw] split_type
|
10314
|
-
# The method to use to split the transform job's data into
|
10315
|
-
# batches.
|
10316
|
-
#
|
10317
|
-
#
|
10318
|
-
#
|
10319
|
-
#
|
10320
|
-
#
|
10321
|
-
#
|
10322
|
-
#
|
10628
|
+
# The method to use to split the transform job's data files into
|
10629
|
+
# smaller batches. Splitting is necessary when the total size of each
|
10630
|
+
# object is too large to fit in a single request. You can also use
|
10631
|
+
# data splitting to improve performance by processing multiple
|
10632
|
+
# concurrent mini-batches. The default value for `SplitType` is
|
10633
|
+
# `None`, which indicates that input data files are not split, and
|
10634
|
+
# request payloads contain the entire contents of an input object. Set
|
10635
|
+
# the value of this parameter to `Line` to split records on a newline
|
10636
|
+
# character boundary. `SplitType` also supports a number of
|
10637
|
+
# record-oriented binary data formats.
|
10638
|
+
#
|
10639
|
+
# When splitting is enabled, the size of a mini-batch depends on the
|
10640
|
+
# values of the `BatchStrategy` and `MaxPayloadInMB` parameters. When
|
10641
|
+
# the value of `BatchStrategy` is `MultiRecord`, Amazon SageMaker
|
10642
|
+
# sends the maximum number of records in each request, up to the
|
10643
|
+
# `MaxPayloadInMB` limit. If the value of `BatchStrategy` is
|
10644
|
+
# `SingleRecord`, Amazon SageMaker sends individual records in each
|
10645
|
+
# request.
|
10323
10646
|
#
|
10324
|
-
# <note markdown="1">
|
10647
|
+
# <note markdown="1"> Some data formats represent a record as a binary payload wrapped
|
10648
|
+
# with extra padding bytes. When splitting is applied to a binary data
|
10649
|
+
# format, padding is removed if the value of `BatchStrategy` is set to
|
10650
|
+
# `SingleRecord`. Padding is not removed if the value of
|
10651
|
+
# `BatchStrategy` is set to `MultiRecord`.
|
10325
10652
|
#
|
10326
10653
|
# </note>
|
10327
10654
|
#
|
10655
|
+
# For more information about the RecordIO data format, see [Data
|
10656
|
+
# Format][1] in the MXNet documentation. For more information about
|
10657
|
+
# the TFRecord fofmat, see [Consuming TFRecord data][2] in the
|
10658
|
+
# TensorFlow documentation.
|
10659
|
+
#
|
10328
10660
|
#
|
10329
10661
|
#
|
10330
10662
|
# [1]: http://mxnet.io/architecture/note_data_loading.html#data-format
|
10663
|
+
# [2]: https://www.tensorflow.org/guide/datasets#consuming_tfrecord_data
|
10331
10664
|
# @return [String]
|
10332
10665
|
#
|
10333
10666
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TransformInput AWS API Documentation
|
@@ -10362,7 +10695,7 @@ module Aws::SageMaker
|
|
10362
10695
|
# },
|
10363
10696
|
# content_type: "ContentType",
|
10364
10697
|
# compression_type: "None", # accepts None, Gzip
|
10365
|
-
# split_type: "None", # accepts None, Line, RecordIO
|
10698
|
+
# split_type: "None", # accepts None, Line, RecordIO, TFRecord
|
10366
10699
|
# },
|
10367
10700
|
# transform_output: { # required
|
10368
10701
|
# s3_output_path: "S3Uri", # required
|
@@ -10722,7 +11055,13 @@ module Aws::SageMaker
|
|
10722
11055
|
# }
|
10723
11056
|
#
|
10724
11057
|
# @!attribute [rw] ui_template_s3_uri
|
10725
|
-
# The Amazon S3 bucket location of the UI template.
|
11058
|
+
# The Amazon S3 bucket location of the UI template. For more
|
11059
|
+
# information about the contents of a UI template, see [ Creating Your
|
11060
|
+
# Custom Labeling Task Template][1].
|
11061
|
+
#
|
11062
|
+
#
|
11063
|
+
#
|
11064
|
+
# [1]: http://docs.aws.amazon.com/sagemaker/latest/dg/sms-custom-templates-step2.html
|
10726
11065
|
# @return [String]
|
10727
11066
|
#
|
10728
11067
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UiConfig AWS API Documentation
|