aws-sdk-sagemaker 1.55.0 → 1.60.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +144 -66
- data/lib/aws-sdk-sagemaker/client_api.rb +5 -2
- data/lib/aws-sdk-sagemaker/types.rb +304 -221
- metadata +4 -4
@@ -3049,6 +3049,7 @@ module Aws::SageMaker
|
|
3049
3049
|
|
3050
3050
|
NestedFiltersList.member = Shapes::ShapeRef.new(shape: NestedFilters)
|
3051
3051
|
|
3052
|
+
NetworkConfig.add_member(:enable_inter_container_traffic_encryption, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableInterContainerTrafficEncryption"))
|
3052
3053
|
NetworkConfig.add_member(:enable_network_isolation, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableNetworkIsolation"))
|
3053
3054
|
NetworkConfig.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfig, location_name: "VpcConfig"))
|
3054
3055
|
NetworkConfig.struct_class = Types::NetworkConfig
|
@@ -3236,9 +3237,10 @@ module Aws::SageMaker
|
|
3236
3237
|
|
3237
3238
|
RealtimeInferenceInstanceTypes.member = Shapes::ShapeRef.new(shape: ProductionVariantInstanceType)
|
3238
3239
|
|
3239
|
-
RenderUiTemplateRequest.add_member(:ui_template, Shapes::ShapeRef.new(shape: UiTemplate,
|
3240
|
+
RenderUiTemplateRequest.add_member(:ui_template, Shapes::ShapeRef.new(shape: UiTemplate, location_name: "UiTemplate"))
|
3240
3241
|
RenderUiTemplateRequest.add_member(:task, Shapes::ShapeRef.new(shape: RenderableTask, required: true, location_name: "Task"))
|
3241
3242
|
RenderUiTemplateRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "RoleArn"))
|
3243
|
+
RenderUiTemplateRequest.add_member(:human_task_ui_arn, Shapes::ShapeRef.new(shape: HumanTaskUiArn, location_name: "HumanTaskUiArn"))
|
3242
3244
|
RenderUiTemplateRequest.struct_class = Types::RenderUiTemplateRequest
|
3243
3245
|
|
3244
3246
|
RenderUiTemplateResponse.add_member(:rendered_content, Shapes::ShapeRef.new(shape: String, required: true, location_name: "RenderedContent"))
|
@@ -3667,7 +3669,8 @@ module Aws::SageMaker
|
|
3667
3669
|
USD.add_member(:tenth_fractions_of_a_cent, Shapes::ShapeRef.new(shape: TenthFractionsOfACent, location_name: "TenthFractionsOfACent"))
|
3668
3670
|
USD.struct_class = Types::USD
|
3669
3671
|
|
3670
|
-
UiConfig.add_member(:ui_template_s3_uri, Shapes::ShapeRef.new(shape: S3Uri,
|
3672
|
+
UiConfig.add_member(:ui_template_s3_uri, Shapes::ShapeRef.new(shape: S3Uri, location_name: "UiTemplateS3Uri"))
|
3673
|
+
UiConfig.add_member(:human_task_ui_arn, Shapes::ShapeRef.new(shape: HumanTaskUiArn, location_name: "HumanTaskUiArn"))
|
3671
3674
|
UiConfig.struct_class = Types::UiConfig
|
3672
3675
|
|
3673
3676
|
UiTemplate.add_member(:content, Shapes::ShapeRef.new(shape: TemplateContent, required: true, location_name: "Content"))
|
@@ -482,10 +482,10 @@ module Aws::SageMaker
|
|
482
482
|
# segmentation, and text classification task types, Amazon SageMaker
|
483
483
|
# Ground Truth provides the following Lambda functions:
|
484
484
|
#
|
485
|
-
#
|
486
|
-
#
|
485
|
+
# **Bounding box** - Finds the most similar boxes from different
|
486
|
+
# workers based on the Jaccard index of the boxes.
|
487
487
|
#
|
488
|
-
#
|
488
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:ACS-BoundingBox`
|
489
489
|
#
|
490
490
|
# `arn:aws:lambda:us-east-2:266458841044:function:ACS-BoundingBox`
|
491
491
|
#
|
@@ -509,11 +509,11 @@ module Aws::SageMaker
|
|
509
509
|
#
|
510
510
|
# `arn:aws:lambda:ca-central-1:918755190332:function:ACS-BoundingBox`
|
511
511
|
#
|
512
|
-
#
|
513
|
-
#
|
514
|
-
#
|
512
|
+
# **Image classification** - Uses a variant of the Expectation
|
513
|
+
# Maximization approach to estimate the true class of an image based
|
514
|
+
# on annotations from individual workers.
|
515
515
|
#
|
516
|
-
#
|
516
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:ACS-ImageMultiClass`
|
517
517
|
#
|
518
518
|
# `arn:aws:lambda:us-east-2:266458841044:function:ACS-ImageMultiClass`
|
519
519
|
#
|
@@ -537,11 +537,11 @@ module Aws::SageMaker
|
|
537
537
|
#
|
538
538
|
# `arn:aws:lambda:ca-central-1:918755190332:function:ACS-ImageMultiClass`
|
539
539
|
#
|
540
|
-
#
|
541
|
-
#
|
542
|
-
#
|
540
|
+
# **Multi-label image classification** - Uses a variant of the
|
541
|
+
# Expectation Maximization approach to estimate the true classes of an
|
542
|
+
# image based on annotations from individual workers.
|
543
543
|
#
|
544
|
-
#
|
544
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:ACS-ImageMultiClassMultiLabel`
|
545
545
|
#
|
546
546
|
# `arn:aws:lambda:us-east-2:266458841044:function:ACS-ImageMultiClassMultiLabel`
|
547
547
|
#
|
@@ -565,11 +565,11 @@ module Aws::SageMaker
|
|
565
565
|
#
|
566
566
|
# `arn:aws:lambda:ca-central-1:918755190332:function:ACS-ImageMultiClassMultiLabel`
|
567
567
|
#
|
568
|
-
#
|
569
|
-
#
|
570
|
-
#
|
568
|
+
# **Semantic segmentation** - Treats each pixel in an image as a
|
569
|
+
# multi-class classification and treats pixel annotations from workers
|
570
|
+
# as "votes" for the correct label.
|
571
571
|
#
|
572
|
-
#
|
572
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:ACS-SemanticSegmentation`
|
573
573
|
#
|
574
574
|
# `arn:aws:lambda:us-east-2:266458841044:function:ACS-SemanticSegmentation`
|
575
575
|
#
|
@@ -593,11 +593,11 @@ module Aws::SageMaker
|
|
593
593
|
#
|
594
594
|
# `arn:aws:lambda:ca-central-1:918755190332:function:ACS-SemanticSegmentation`
|
595
595
|
#
|
596
|
-
#
|
597
|
-
#
|
598
|
-
#
|
596
|
+
# **Text classification** - Uses a variant of the Expectation
|
597
|
+
# Maximization approach to estimate the true class of text based on
|
598
|
+
# annotations from individual workers.
|
599
599
|
#
|
600
|
-
#
|
600
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:ACS-TextMultiClass`
|
601
601
|
#
|
602
602
|
# `arn:aws:lambda:us-east-2:266458841044:function:ACS-TextMultiClass`
|
603
603
|
#
|
@@ -621,11 +621,11 @@ module Aws::SageMaker
|
|
621
621
|
#
|
622
622
|
# `arn:aws:lambda:ca-central-1:918755190332:function:ACS-TextMultiClass`
|
623
623
|
#
|
624
|
-
#
|
625
|
-
#
|
626
|
-
#
|
624
|
+
# **Multi-label text classification** - Uses a variant of the
|
625
|
+
# Expectation Maximization approach to estimate the true classes of
|
626
|
+
# text based on annotations from individual workers.
|
627
627
|
#
|
628
|
-
#
|
628
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:ACS-TextMultiClassMultiLabel`
|
629
629
|
#
|
630
630
|
# `arn:aws:lambda:us-east-2:266458841044:function:ACS-TextMultiClassMultiLabel`
|
631
631
|
#
|
@@ -649,10 +649,10 @@ module Aws::SageMaker
|
|
649
649
|
#
|
650
650
|
# `arn:aws:lambda:ca-central-1:918755190332:function:ACS-TextMultiClassMultiLabel`
|
651
651
|
#
|
652
|
-
#
|
653
|
-
#
|
652
|
+
# **Named entity recognition** - Groups similar selections and
|
653
|
+
# calculates aggregate boundaries, resolving to most-assigned label.
|
654
654
|
#
|
655
|
-
#
|
655
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:ACS-NamedEntityRecognition`
|
656
656
|
#
|
657
657
|
# `arn:aws:lambda:us-east-2:266458841044:function:ACS-NamedEntityRecognition`
|
658
658
|
#
|
@@ -676,12 +676,12 @@ module Aws::SageMaker
|
|
676
676
|
#
|
677
677
|
# `arn:aws:lambda:ca-central-1:918755190332:function:ACS-NamedEntityRecognition`
|
678
678
|
#
|
679
|
-
#
|
680
|
-
#
|
681
|
-
#
|
682
|
-
#
|
679
|
+
# **Bounding box verification** - Uses a variant of the Expectation
|
680
|
+
# Maximization approach to estimate the true class of verification
|
681
|
+
# judgement for bounding box labels based on annotations from
|
682
|
+
# individual workers.
|
683
683
|
#
|
684
|
-
#
|
684
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:ACS-VerificationBoundingBox`
|
685
685
|
#
|
686
686
|
# `arn:aws:lambda:us-east-2:266458841044:function:ACS-VerificationBoundingBox`
|
687
687
|
#
|
@@ -705,12 +705,12 @@ module Aws::SageMaker
|
|
705
705
|
#
|
706
706
|
# `arn:aws:lambda:ca-central-1:918755190332:function:ACS-VerificationBoundingBox`
|
707
707
|
#
|
708
|
-
#
|
709
|
-
#
|
710
|
-
#
|
711
|
-
#
|
708
|
+
# **Semantic segmentation verification** - Uses a variant of the
|
709
|
+
# Expectation Maximization approach to estimate the true class of
|
710
|
+
# verification judgment for semantic segmentation labels based on
|
711
|
+
# annotations from individual workers.
|
712
712
|
#
|
713
|
-
#
|
713
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:ACS-VerificationSemanticSegmentation`
|
714
714
|
#
|
715
715
|
# `arn:aws:lambda:us-east-2:266458841044:function:ACS-VerificationSemanticSegmentation`
|
716
716
|
#
|
@@ -734,11 +734,11 @@ module Aws::SageMaker
|
|
734
734
|
#
|
735
735
|
# `arn:aws:lambda:ca-central-1:918755190332:function:ACS-VerificationSemanticSegmentation`
|
736
736
|
#
|
737
|
-
#
|
738
|
-
#
|
739
|
-
#
|
737
|
+
# **Bounding box adjustment** - Finds the most similar boxes from
|
738
|
+
# different workers based on the Jaccard index of the adjusted
|
739
|
+
# annotations.
|
740
740
|
#
|
741
|
-
#
|
741
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:ACS-AdjustmentBoundingBox`
|
742
742
|
#
|
743
743
|
# `arn:aws:lambda:us-east-2:266458841044:function:ACS-AdjustmentBoundingBox`
|
744
744
|
#
|
@@ -762,11 +762,11 @@ module Aws::SageMaker
|
|
762
762
|
#
|
763
763
|
# `arn:aws:lambda:ca-central-1:918755190332:function:ACS-AdjustmentBoundingBox`
|
764
764
|
#
|
765
|
-
#
|
766
|
-
#
|
767
|
-
#
|
765
|
+
# **Semantic segmentation adjustment** - Treats each pixel in an image
|
766
|
+
# as a multi-class classification and treats pixel adjusted
|
767
|
+
# annotations from workers as "votes" for the correct label.
|
768
768
|
#
|
769
|
-
#
|
769
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:ACS-AdjustmentSemanticSegmentation`
|
770
770
|
#
|
771
771
|
# `arn:aws:lambda:us-east-2:266458841044:function:ACS-AdjustmentSemanticSegmentation`
|
772
772
|
#
|
@@ -2271,7 +2271,8 @@ module Aws::SageMaker
|
|
2271
2271
|
# @return [Array<Types::Tag>]
|
2272
2272
|
#
|
2273
2273
|
# @!attribute [rw] resource_spec
|
2274
|
-
# The instance type and
|
2274
|
+
# The instance type and the Amazon Resource Name (ARN) of the
|
2275
|
+
# SageMaker image created on the instance.
|
2275
2276
|
# @return [Types::ResourceSpec]
|
2276
2277
|
#
|
2277
2278
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateAppRequest AWS API Documentation
|
@@ -2287,7 +2288,7 @@ module Aws::SageMaker
|
|
2287
2288
|
end
|
2288
2289
|
|
2289
2290
|
# @!attribute [rw] app_arn
|
2290
|
-
# The
|
2291
|
+
# The App's Amazon Resource Name (ARN).
|
2291
2292
|
# @return [String]
|
2292
2293
|
#
|
2293
2294
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateAppResponse AWS API Documentation
|
@@ -2606,7 +2607,7 @@ module Aws::SageMaker
|
|
2606
2607
|
# @return [String]
|
2607
2608
|
#
|
2608
2609
|
# @!attribute [rw] auth_mode
|
2609
|
-
# The mode of authentication that
|
2610
|
+
# The mode of authentication that members use to access the domain.
|
2610
2611
|
# @return [String]
|
2611
2612
|
#
|
2612
2613
|
# @!attribute [rw] default_user_settings
|
@@ -2614,21 +2615,23 @@ module Aws::SageMaker
|
|
2614
2615
|
# @return [Types::UserSettings]
|
2615
2616
|
#
|
2616
2617
|
# @!attribute [rw] subnet_ids
|
2617
|
-
#
|
2618
|
+
# The VPC subnets to use for communication with the EFS volume.
|
2618
2619
|
# @return [Array<String>]
|
2619
2620
|
#
|
2620
2621
|
# @!attribute [rw] vpc_id
|
2621
|
-
#
|
2622
|
-
#
|
2622
|
+
# The ID of the Amazon Virtual Private Cloud (VPC) to use for
|
2623
|
+
# communication with the EFS volume.
|
2623
2624
|
# @return [String]
|
2624
2625
|
#
|
2625
2626
|
# @!attribute [rw] tags
|
2626
|
-
# Each tag consists of a key and
|
2627
|
-
# unique per resource.
|
2627
|
+
# Tags to associated with the Domain. Each tag consists of a key and
|
2628
|
+
# an optional value. Tag keys must be unique per resource. Tags are
|
2629
|
+
# searchable using the Search API.
|
2628
2630
|
# @return [Array<Types::Tag>]
|
2629
2631
|
#
|
2630
2632
|
# @!attribute [rw] home_efs_file_system_kms_key_id
|
2631
|
-
# The AWS Key Management Service encryption key ID.
|
2633
|
+
# The AWS Key Management Service (KMS) encryption key ID. Encryption
|
2634
|
+
# with a customer master key (CMK) is not supported.
|
2632
2635
|
# @return [String]
|
2633
2636
|
#
|
2634
2637
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateDomainRequest AWS API Documentation
|
@@ -3340,6 +3343,8 @@ module Aws::SageMaker
|
|
3340
3343
|
# @return [Types::HyperParameterTrainingJobDefinition]
|
3341
3344
|
#
|
3342
3345
|
# @!attribute [rw] training_job_definitions
|
3346
|
+
# A list of the HyperParameterTrainingJobDefinition objects launched
|
3347
|
+
# for this tuning job.
|
3343
3348
|
# @return [Array<Types::HyperParameterTrainingJobDefinition>]
|
3344
3349
|
#
|
3345
3350
|
# @!attribute [rw] warm_start_config
|
@@ -3438,7 +3443,8 @@ module Aws::SageMaker
|
|
3438
3443
|
# human_task_config: { # required
|
3439
3444
|
# workteam_arn: "WorkteamArn", # required
|
3440
3445
|
# ui_config: { # required
|
3441
|
-
# ui_template_s3_uri: "S3Uri",
|
3446
|
+
# ui_template_s3_uri: "S3Uri",
|
3447
|
+
# human_task_ui_arn: "HumanTaskUiArn",
|
3442
3448
|
# },
|
3443
3449
|
# pre_human_task_lambda_arn: "LambdaFunctionArn", # required
|
3444
3450
|
# task_keywords: ["TaskKeyword"],
|
@@ -3909,6 +3915,7 @@ module Aws::SageMaker
|
|
3909
3915
|
# "ProcessingEnvironmentKey" => "ProcessingEnvironmentValue",
|
3910
3916
|
# },
|
3911
3917
|
# network_config: {
|
3918
|
+
# enable_inter_container_traffic_encryption: false,
|
3912
3919
|
# enable_network_isolation: false,
|
3913
3920
|
# vpc_config: {
|
3914
3921
|
# security_group_ids: ["SecurityGroupId"], # required
|
@@ -4336,6 +4343,7 @@ module Aws::SageMaker
|
|
4336
4343
|
# "ProcessingEnvironmentKey" => "ProcessingEnvironmentValue",
|
4337
4344
|
# },
|
4338
4345
|
# network_config: {
|
4346
|
+
# enable_inter_container_traffic_encryption: false,
|
4339
4347
|
# enable_network_isolation: false,
|
4340
4348
|
# vpc_config: {
|
4341
4349
|
# security_group_ids: ["SecurityGroupId"], # required
|
@@ -5745,7 +5753,7 @@ module Aws::SageMaker
|
|
5745
5753
|
# @return [String]
|
5746
5754
|
#
|
5747
5755
|
# @!attribute [rw] retention_policy
|
5748
|
-
# The retention policy for this domain, which specifies
|
5756
|
+
# The retention policy for this domain, which specifies whether
|
5749
5757
|
# resources will be retained after the Domain is deleted. By default,
|
5750
5758
|
# all resources are retained (not automatically deleted).
|
5751
5759
|
# @return [Types::RetentionPolicy]
|
@@ -6273,7 +6281,8 @@ module Aws::SageMaker
|
|
6273
6281
|
# @return [String]
|
6274
6282
|
#
|
6275
6283
|
# @!attribute [rw] resource_spec
|
6276
|
-
# The instance type and
|
6284
|
+
# The instance type and the Amazon Resource Name (ARN) of the
|
6285
|
+
# SageMaker image created on the instance.
|
6277
6286
|
# @return [Types::ResourceSpec]
|
6278
6287
|
#
|
6279
6288
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeAppResponse AWS API Documentation
|
@@ -7062,6 +7071,8 @@ module Aws::SageMaker
|
|
7062
7071
|
# @return [Types::HyperParameterTrainingJobDefinition]
|
7063
7072
|
#
|
7064
7073
|
# @!attribute [rw] training_job_definitions
|
7074
|
+
# A list of the HyperParameterTrainingJobDefinition objects launched
|
7075
|
+
# for this tuning job.
|
7065
7076
|
# @return [Array<Types::HyperParameterTrainingJobDefinition>]
|
7066
7077
|
#
|
7067
7078
|
# @!attribute [rw] hyper_parameter_tuning_job_status
|
@@ -8616,7 +8627,7 @@ module Aws::SageMaker
|
|
8616
8627
|
end
|
8617
8628
|
|
8618
8629
|
# @!attribute [rw] domain_id
|
8619
|
-
# The domain
|
8630
|
+
# The ID of the domain that contains the profile.
|
8620
8631
|
# @return [String]
|
8621
8632
|
#
|
8622
8633
|
# @!attribute [rw] user_profile_arn
|
@@ -8628,7 +8639,8 @@ module Aws::SageMaker
|
|
8628
8639
|
# @return [String]
|
8629
8640
|
#
|
8630
8641
|
# @!attribute [rw] home_efs_file_system_uid
|
8631
|
-
# The
|
8642
|
+
# The ID of the user's profile in the Amazon Elastic File System
|
8643
|
+
# (EFS) volume.
|
8632
8644
|
# @return [String]
|
8633
8645
|
#
|
8634
8646
|
# @!attribute [rw] status
|
@@ -9909,7 +9921,8 @@ module Aws::SageMaker
|
|
9909
9921
|
# {
|
9910
9922
|
# workteam_arn: "WorkteamArn", # required
|
9911
9923
|
# ui_config: { # required
|
9912
|
-
# ui_template_s3_uri: "S3Uri",
|
9924
|
+
# ui_template_s3_uri: "S3Uri",
|
9925
|
+
# human_task_ui_arn: "HumanTaskUiArn",
|
9913
9926
|
# },
|
9914
9927
|
# pre_human_task_lambda_arn: "LambdaFunctionArn", # required
|
9915
9928
|
# task_keywords: ["TaskKeyword"],
|
@@ -9950,291 +9963,311 @@ module Aws::SageMaker
|
|
9950
9963
|
# segmentation, and text classification task types, Amazon SageMaker
|
9951
9964
|
# Ground Truth provides the following Lambda functions:
|
9952
9965
|
#
|
9953
|
-
# **
|
9966
|
+
# **Bounding box** - Finds the most similar boxes from different
|
9967
|
+
# workers based on the Jaccard index of the boxes.
|
9954
9968
|
#
|
9955
9969
|
# * `arn:aws:lambda:us-east-1:432418664414:function:PRE-BoundingBox`
|
9956
9970
|
#
|
9957
|
-
# * `arn:aws:lambda:us-east-
|
9971
|
+
# * `arn:aws:lambda:us-east-2:266458841044:function:PRE-BoundingBox`
|
9958
9972
|
#
|
9959
|
-
# * `arn:aws:lambda:us-
|
9973
|
+
# * `arn:aws:lambda:us-west-2:081040173940:function:PRE-BoundingBox`
|
9960
9974
|
#
|
9961
|
-
# * `arn:aws:lambda:
|
9975
|
+
# * `arn:aws:lambda:ca-central-1:918755190332:function:PRE-BoundingBox`
|
9962
9976
|
#
|
9963
|
-
# * `arn:aws:lambda:
|
9977
|
+
# * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-BoundingBox`
|
9964
9978
|
#
|
9965
|
-
# * `arn:aws:lambda:
|
9979
|
+
# * `arn:aws:lambda:eu-west-2:487402164563:function:PRE-BoundingBox`
|
9966
9980
|
#
|
9967
|
-
# * `arn:aws:lambda:
|
9981
|
+
# * `arn:aws:lambda:eu-central-1:203001061592:function:PRE-BoundingBox`
|
9968
9982
|
#
|
9969
|
-
# * `arn:aws:lambda:
|
9983
|
+
# * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-BoundingBox`
|
9970
9984
|
#
|
9971
|
-
# * `arn:aws:lambda:
|
9985
|
+
# * `arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-BoundingBox`
|
9972
9986
|
#
|
9973
|
-
# * `arn:aws:lambda:
|
9987
|
+
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-BoundingBox`
|
9974
9988
|
#
|
9975
|
-
# * `arn:aws:lambda:
|
9989
|
+
# * `arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-BoundingBox`
|
9976
9990
|
#
|
9977
|
-
#
|
9991
|
+
# * `arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-BoundingBox`
|
9978
9992
|
#
|
9979
|
-
#
|
9993
|
+
# **Image classification** - Uses a variant of the Expectation
|
9994
|
+
# Maximization approach to estimate the true class of an image based
|
9995
|
+
# on annotations from individual workers.
|
9996
|
+
#
|
9997
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:PRE-ImageMultiClass`
|
9980
9998
|
#
|
9981
9999
|
# * `arn:aws:lambda:us-east-2:266458841044:function:PRE-ImageMultiClass`
|
9982
10000
|
#
|
9983
|
-
# * `arn:aws:lambda:us-
|
10001
|
+
# * `arn:aws:lambda:us-west-2:081040173940:function:PRE-ImageMultiClass`
|
9984
10002
|
#
|
9985
|
-
# * `arn:aws:lambda:
|
10003
|
+
# * `arn:aws:lambda:ca-central-1:918755190332:function:PRE-ImageMultiClass`
|
9986
10004
|
#
|
9987
|
-
# * `arn:aws:lambda:
|
10005
|
+
# * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-ImageMultiClass`
|
9988
10006
|
#
|
9989
|
-
# * `arn:aws:lambda:
|
10007
|
+
# * `arn:aws:lambda:eu-west-2:487402164563:function:PRE-ImageMultiClass`
|
9990
10008
|
#
|
9991
|
-
# * `arn:aws:lambda:
|
10009
|
+
# * `arn:aws:lambda:eu-central-1:203001061592:function:PRE-ImageMultiClass`
|
9992
10010
|
#
|
9993
|
-
# * `arn:aws:lambda:
|
10011
|
+
# * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-ImageMultiClass`
|
9994
10012
|
#
|
9995
|
-
# * `arn:aws:lambda:
|
10013
|
+
# * `arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-ImageMultiClass`
|
9996
10014
|
#
|
9997
|
-
# * `arn:aws:lambda:
|
10015
|
+
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-ImageMultiClass`
|
9998
10016
|
#
|
9999
|
-
# * `arn:aws:lambda:
|
10017
|
+
# * `arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-ImageMultiClass`
|
10000
10018
|
#
|
10001
|
-
#
|
10019
|
+
# * `arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-ImageMultiClass`
|
10002
10020
|
#
|
10003
|
-
#
|
10021
|
+
# **Multi-label image classification** - Uses a variant of the
|
10022
|
+
# Expectation Maximization approach to estimate the true classes of an
|
10023
|
+
# image based on annotations from individual workers.
|
10004
10024
|
#
|
10005
|
-
# * `arn:aws:lambda:us-
|
10025
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:PRE-ImageMultiClassMultiLabel`
|
10026
|
+
#
|
10027
|
+
# * `arn:aws:lambda:us-east-2:266458841044:function:PRE-ImageMultiClassMultiLabel`
|
10006
10028
|
#
|
10007
10029
|
# * `arn:aws:lambda:us-west-2:081040173940:function:PRE-ImageMultiClassMultiLabel`
|
10008
10030
|
#
|
10009
|
-
# * `arn:aws:lambda:
|
10031
|
+
# * `arn:aws:lambda:ca-central-1:918755190332:function:PRE-ImageMultiClassMultiLabel`
|
10010
10032
|
#
|
10011
|
-
# * `arn:aws:lambda:
|
10033
|
+
# * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-ImageMultiClassMultiLabel`
|
10012
10034
|
#
|
10013
|
-
# * `arn:aws:lambda:
|
10035
|
+
# * `arn:aws:lambda:eu-west-2:487402164563:function:PRE-ImageMultiClassMultiLabel`
|
10014
10036
|
#
|
10015
|
-
# * `arn:aws:lambda:
|
10037
|
+
# * `arn:aws:lambda:eu-central-1:203001061592:function:PRE-ImageMultiClassMultiLabel`
|
10016
10038
|
#
|
10017
|
-
# * `arn:aws:lambda:
|
10039
|
+
# * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-ImageMultiClassMultiLabel`
|
10018
10040
|
#
|
10019
|
-
# * `arn:aws:lambda:
|
10041
|
+
# * `arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-ImageMultiClassMultiLabel`
|
10020
10042
|
#
|
10021
|
-
# * `arn:aws:lambda:
|
10043
|
+
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-ImageMultiClassMultiLabel`
|
10022
10044
|
#
|
10023
|
-
# * `arn:aws:lambda:
|
10045
|
+
# * `arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-ImageMultiClassMultiLabel`
|
10046
|
+
#
|
10047
|
+
# * `arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-ImageMultiClassMultiLabel`
|
10024
10048
|
#
|
10025
|
-
# **
|
10049
|
+
# **Semantic segmentation** - Treats each pixel in an image as a
|
10050
|
+
# multi-class classification and treats pixel annotations from workers
|
10051
|
+
# as "votes" for the correct label.
|
10026
10052
|
#
|
10027
|
-
# * `arn:aws:lambda:
|
10053
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:PRE-SemanticSegmentation`
|
10028
10054
|
#
|
10029
|
-
# * `arn:aws:lambda:
|
10055
|
+
# * `arn:aws:lambda:us-east-2:266458841044:function:PRE-SemanticSegmentation`
|
10030
10056
|
#
|
10031
|
-
# * `arn:aws:lambda:
|
10057
|
+
# * `arn:aws:lambda:us-west-2:081040173940:function:PRE-SemanticSegmentation`
|
10032
10058
|
#
|
10033
10059
|
# * `arn:aws:lambda:ca-central-1:918755190332:function:PRE-SemanticSegmentation`
|
10034
10060
|
#
|
10035
|
-
# * `arn:aws:lambda:
|
10061
|
+
# * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-SemanticSegmentation`
|
10036
10062
|
#
|
10037
|
-
# * `arn:aws:lambda:
|
10063
|
+
# * `arn:aws:lambda:eu-west-2:487402164563:function:PRE-SemanticSegmentation`
|
10038
10064
|
#
|
10039
|
-
# * `arn:aws:lambda:
|
10065
|
+
# * `arn:aws:lambda:eu-central-1:203001061592:function:PRE-SemanticSegmentation`
|
10040
10066
|
#
|
10041
|
-
# * `arn:aws:lambda:
|
10067
|
+
# * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-SemanticSegmentation`
|
10042
10068
|
#
|
10043
|
-
# * `arn:aws:lambda:
|
10069
|
+
# * `arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-SemanticSegmentation`
|
10044
10070
|
#
|
10045
|
-
# * `arn:aws:lambda:
|
10071
|
+
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-SemanticSegmentation`
|
10046
10072
|
#
|
10047
|
-
# * `arn:aws:lambda:
|
10073
|
+
# * `arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-SemanticSegmentation`
|
10048
10074
|
#
|
10049
|
-
#
|
10075
|
+
# * `arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-SemanticSegmentation`
|
10050
10076
|
#
|
10051
|
-
#
|
10077
|
+
# **Text classification** - Uses a variant of the Expectation
|
10078
|
+
# Maximization approach to estimate the true class of text based on
|
10079
|
+
# annotations from individual workers.
|
10052
10080
|
#
|
10053
|
-
# * `arn:aws:lambda:
|
10081
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:PRE-TextMultiClass`
|
10054
10082
|
#
|
10055
|
-
# * `arn:aws:lambda:
|
10083
|
+
# * `arn:aws:lambda:us-east-2:266458841044:function:PRE-TextMultiClass`
|
10056
10084
|
#
|
10057
|
-
# * `arn:aws:lambda:
|
10085
|
+
# * `arn:aws:lambda:us-west-2:081040173940:function:PRE-TextMultiClass`
|
10086
|
+
#
|
10087
|
+
# * `arn:aws:lambda:ca-central-1:918755190332:function:PRE-TextMultiClass`
|
10058
10088
|
#
|
10059
10089
|
# * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-TextMultiClass`
|
10060
10090
|
#
|
10061
|
-
# * `arn:aws:lambda:eu-west-
|
10091
|
+
# * `arn:aws:lambda:eu-west-2:487402164563:function:PRE-TextMultiClass`
|
10062
10092
|
#
|
10063
|
-
# * `arn:aws:lambda:eu-
|
10093
|
+
# * `arn:aws:lambda:eu-central-1:203001061592:function:PRE-TextMultiClass`
|
10064
10094
|
#
|
10065
|
-
# * `arn:aws:lambda:
|
10095
|
+
# * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-TextMultiClass`
|
10066
10096
|
#
|
10067
|
-
# * `arn:aws:lambda:
|
10097
|
+
# * `arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-TextMultiClass`
|
10068
10098
|
#
|
10069
|
-
# * `arn:aws:lambda:
|
10099
|
+
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-TextMultiClass`
|
10070
10100
|
#
|
10071
|
-
# * `arn:aws:lambda:
|
10101
|
+
# * `arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-TextMultiClass`
|
10072
10102
|
#
|
10073
|
-
#
|
10103
|
+
# * `arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-TextMultiClass`
|
10074
10104
|
#
|
10075
|
-
#
|
10105
|
+
# **Multi-label text classification** - Uses a variant of the
|
10106
|
+
# Expectation Maximization approach to estimate the true classes of
|
10107
|
+
# text based on annotations from individual workers.
|
10076
10108
|
#
|
10077
|
-
# * `arn:aws:lambda:
|
10109
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:PRE-TextMultiClassMultiLabel`
|
10078
10110
|
#
|
10079
|
-
# * `arn:aws:lambda:
|
10111
|
+
# * `arn:aws:lambda:us-east-2:266458841044:function:PRE-TextMultiClassMultiLabel`
|
10080
10112
|
#
|
10081
|
-
# * `arn:aws:lambda:
|
10113
|
+
# * `arn:aws:lambda:us-west-2:081040173940:function:PRE-TextMultiClassMultiLabel`
|
10082
10114
|
#
|
10083
|
-
# * `arn:aws:lambda:
|
10115
|
+
# * `arn:aws:lambda:ca-central-1:918755190332:function:PRE-TextMultiClassMultiLabel`
|
10116
|
+
#
|
10117
|
+
# * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-TextMultiClassMultiLabel`
|
10084
10118
|
#
|
10085
10119
|
# * `arn:aws:lambda:eu-west-2:487402164563:function:PRE-TextMultiClassMultiLabel`
|
10086
10120
|
#
|
10087
|
-
# * `arn:aws:lambda:eu-
|
10121
|
+
# * `arn:aws:lambda:eu-central-1:203001061592:function:PRE-TextMultiClassMultiLabel`
|
10088
10122
|
#
|
10089
|
-
# * `arn:aws:lambda:
|
10123
|
+
# * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-TextMultiClassMultiLabel`
|
10090
10124
|
#
|
10091
|
-
# * `arn:aws:lambda:
|
10125
|
+
# * `arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-TextMultiClassMultiLabel`
|
10092
10126
|
#
|
10093
|
-
# * `arn:aws:lambda:
|
10127
|
+
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-TextMultiClassMultiLabel`
|
10094
10128
|
#
|
10095
|
-
# * `arn:aws:lambda:
|
10129
|
+
# * `arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-TextMultiClassMultiLabel`
|
10096
10130
|
#
|
10097
|
-
#
|
10131
|
+
# * `arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-TextMultiClassMultiLabel`
|
10098
10132
|
#
|
10099
|
-
#
|
10133
|
+
# **Named entity recognition** - Groups similar selections and
|
10134
|
+
# calculates aggregate boundaries, resolving to most-assigned label.
|
10100
10135
|
#
|
10101
|
-
# * `arn:aws:lambda:
|
10136
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:PRE-NamedEntityRecognition`
|
10102
10137
|
#
|
10103
|
-
# * `arn:aws:lambda:
|
10138
|
+
# * `arn:aws:lambda:us-east-2:266458841044:function:PRE-NamedEntityRecognition`
|
10104
10139
|
#
|
10105
|
-
# * `arn:aws:lambda:
|
10140
|
+
# * `arn:aws:lambda:us-west-2:081040173940:function:PRE-NamedEntityRecognition`
|
10106
10141
|
#
|
10107
|
-
# * `arn:aws:lambda:
|
10142
|
+
# * `arn:aws:lambda:ca-central-1:918755190332:function:PRE-NamedEntityRecognition`
|
10108
10143
|
#
|
10109
|
-
# * `arn:aws:lambda:eu-
|
10144
|
+
# * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-NamedEntityRecognition`
|
10145
|
+
#
|
10146
|
+
# * `arn:aws:lambda:eu-west-2:487402164563:function:PRE-NamedEntityRecognition`
|
10110
10147
|
#
|
10111
10148
|
# * `arn:aws:lambda:eu-central-1:203001061592:function:PRE-NamedEntityRecognition`
|
10112
10149
|
#
|
10113
|
-
# * `arn:aws:lambda:
|
10150
|
+
# * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-NamedEntityRecognition`
|
10114
10151
|
#
|
10115
|
-
# * `arn:aws:lambda:
|
10152
|
+
# * `arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-NamedEntityRecognition`
|
10116
10153
|
#
|
10117
|
-
# * `arn:aws:lambda:
|
10154
|
+
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-NamedEntityRecognition`
|
10118
10155
|
#
|
10119
|
-
# * `arn:aws:lambda:
|
10156
|
+
# * `arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-NamedEntityRecognition`
|
10120
10157
|
#
|
10121
|
-
#
|
10158
|
+
# * `arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-NamedEntityRecognition`
|
10122
10159
|
#
|
10123
|
-
#
|
10160
|
+
# **Bounding box verification** - Uses a variant of the Expectation
|
10161
|
+
# Maximization approach to estimate the true class of verification
|
10162
|
+
# judgement for bounding box labels based on annotations from
|
10163
|
+
# individual workers.
|
10124
10164
|
#
|
10125
|
-
# * `arn:aws:lambda:
|
10165
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:PRE-VerificationBoundingBox`
|
10126
10166
|
#
|
10127
|
-
# * `arn:aws:lambda:
|
10167
|
+
# * `arn:aws:lambda:us-east-2:266458841044:function:PRE-VerificationBoundingBox`
|
10128
10168
|
#
|
10129
|
-
# * `arn:aws:lambda:
|
10169
|
+
# * `arn:aws:lambda:us-west-2:081040173940:function:PRE-VerificationBoundingBox`
|
10130
10170
|
#
|
10131
|
-
# * `arn:aws:lambda:
|
10171
|
+
# * `arn:aws:lambda:ca-central-1:918755190332:function:PRE-VerificationBoundingBox`
|
10132
10172
|
#
|
10133
|
-
# * `arn:aws:lambda:
|
10173
|
+
# * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-VerificationBoundingBox`
|
10134
10174
|
#
|
10135
|
-
# * `arn:aws:lambda:
|
10175
|
+
# * `arn:aws:lambda:eu-west-2:487402164563:function:PRE-VerificationBoundingBox`
|
10176
|
+
#
|
10177
|
+
# * `arn:aws:lambda:eu-central-1:203001061592:function:PRE-VerificationBoundingBox`
|
10136
10178
|
#
|
10137
10179
|
# * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-VerificationBoundingBox`
|
10138
10180
|
#
|
10139
|
-
# * `arn:aws:lambda:ap-northeast-
|
10181
|
+
# * `arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-VerificationBoundingBox`
|
10140
10182
|
#
|
10141
|
-
# * `arn:aws:lambda:ap-
|
10183
|
+
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-VerificationBoundingBox`
|
10142
10184
|
#
|
10143
|
-
# * `arn:aws:lambda:ap-
|
10185
|
+
# * `arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-VerificationBoundingBox`
|
10144
10186
|
#
|
10145
|
-
#
|
10187
|
+
# * `arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-VerificationBoundingBox`
|
10146
10188
|
#
|
10147
|
-
#
|
10189
|
+
# **Bounding box adjustment** - Finds the most similar boxes from
|
10190
|
+
# different workers based on the Jaccard index of the adjusted
|
10191
|
+
# annotations.
|
10148
10192
|
#
|
10149
|
-
# * `arn:aws:lambda:
|
10193
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:PRE-AdjustmentBoundingBox`
|
10150
10194
|
#
|
10151
|
-
# * `arn:aws:lambda:
|
10195
|
+
# * `arn:aws:lambda:us-east-2:266458841044:function:PRE-AdjustmentBoundingBox`
|
10152
10196
|
#
|
10153
|
-
# * `arn:aws:lambda:
|
10197
|
+
# * `arn:aws:lambda:us-west-2:081040173940:function:PRE-AdjustmentBoundingBox`
|
10154
10198
|
#
|
10155
|
-
# * `arn:aws:lambda:
|
10199
|
+
# * `arn:aws:lambda:ca-central-1:918755190332:function:PRE-AdjustmentBoundingBox`
|
10156
10200
|
#
|
10157
|
-
# * `arn:aws:lambda:
|
10201
|
+
# * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-AdjustmentBoundingBox`
|
10158
10202
|
#
|
10159
|
-
# * `arn:aws:lambda:
|
10203
|
+
# * `arn:aws:lambda:eu-west-2:487402164563:function:PRE-AdjustmentBoundingBox`
|
10160
10204
|
#
|
10161
|
-
# * `arn:aws:lambda:
|
10205
|
+
# * `arn:aws:lambda:eu-central-1:203001061592:function:PRE-AdjustmentBoundingBox`
|
10162
10206
|
#
|
10163
|
-
# * `arn:aws:lambda:ap-northeast-
|
10207
|
+
# * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-AdjustmentBoundingBox`
|
10164
10208
|
#
|
10165
10209
|
# * `arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-AdjustmentBoundingBox`
|
10166
10210
|
#
|
10167
|
-
# * `arn:aws:lambda:ap-
|
10168
|
-
#
|
10169
|
-
# **Asia Pacific (Mumbai) (ap-south-1):**
|
10170
|
-
#
|
10171
|
-
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-BoundingBox`
|
10172
|
-
#
|
10173
|
-
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-ImageMultiClass`
|
10174
|
-
#
|
10175
|
-
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-ImageMultiClassMultiLabel`
|
10176
|
-
#
|
10177
|
-
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-SemanticSegmentation`
|
10178
|
-
#
|
10179
|
-
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-TextMultiClass`
|
10180
|
-
#
|
10181
|
-
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-TextMultiClassMultiLabel`
|
10182
|
-
#
|
10183
|
-
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-NamedEntityRecognition`
|
10211
|
+
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-AdjustmentBoundingBox`
|
10184
10212
|
#
|
10185
|
-
# * `arn:aws:lambda:ap-
|
10213
|
+
# * `arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-AdjustmentBoundingBox`
|
10186
10214
|
#
|
10187
|
-
# * `arn:aws:lambda:ap-
|
10215
|
+
# * `arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-AdjustmentBoundingBox`
|
10188
10216
|
#
|
10189
|
-
#
|
10217
|
+
# **Semantic segmentation verification** - Uses a variant of the
|
10218
|
+
# Expectation Maximization approach to estimate the true class of
|
10219
|
+
# verification judgment for semantic segmentation labels based on
|
10220
|
+
# annotations from individual workers.
|
10190
10221
|
#
|
10191
|
-
# * `arn:aws:lambda:
|
10222
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:PRE-VerificationSemanticSegmentation`
|
10192
10223
|
#
|
10193
|
-
#
|
10224
|
+
# * `arn:aws:lambda:us-east-2:266458841044:function:PRE-VerificationSemanticSegmentation`
|
10194
10225
|
#
|
10195
|
-
# * `arn:aws:lambda:
|
10226
|
+
# * `arn:aws:lambda:us-west-2:081040173940:function:PRE-VerificationSemanticSegmentation`
|
10196
10227
|
#
|
10197
|
-
# * `arn:aws:lambda:
|
10228
|
+
# * `arn:aws:lambda:ca-central-1:918755190332:function:PRE-VerificationSemanticSegmentation`
|
10198
10229
|
#
|
10199
|
-
# * `arn:aws:lambda:
|
10230
|
+
# * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-VerificationSemanticSegmentation`
|
10200
10231
|
#
|
10201
|
-
# * `arn:aws:lambda:
|
10232
|
+
# * `arn:aws:lambda:eu-west-2:487402164563:function:PRE-VerificationSemanticSegmentation`
|
10202
10233
|
#
|
10203
|
-
# * `arn:aws:lambda:
|
10234
|
+
# * `arn:aws:lambda:eu-central-1:203001061592:function:PRE-VerificationSemanticSegmentation`
|
10204
10235
|
#
|
10205
|
-
# * `arn:aws:lambda:ap-
|
10236
|
+
# * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-VerificationSemanticSegmentation`
|
10206
10237
|
#
|
10207
|
-
# * `arn:aws:lambda:ap-
|
10238
|
+
# * `arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-VerificationSemanticSegmentation`
|
10208
10239
|
#
|
10209
|
-
# * `arn:aws:lambda:ap-
|
10240
|
+
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-VerificationSemanticSegmentation`
|
10210
10241
|
#
|
10211
10242
|
# * `arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-VerificationSemanticSegmentation`
|
10212
10243
|
#
|
10213
|
-
# * `arn:aws:lambda:ap-southeast-
|
10244
|
+
# * `arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-VerificationSemanticSegmentation`
|
10214
10245
|
#
|
10215
|
-
#
|
10246
|
+
# **Semantic segmentation adjustment** - Treats each pixel in an image
|
10247
|
+
# as a multi-class classification and treats pixel adjusted
|
10248
|
+
# annotations from workers as "votes" for the correct label.
|
10216
10249
|
#
|
10217
|
-
#
|
10250
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:PRE-AdjustmentSemanticSegmentation`
|
10218
10251
|
#
|
10219
|
-
# * `arn:aws:lambda:
|
10252
|
+
# * `arn:aws:lambda:us-east-2:266458841044:function:PRE-AdjustmentSemanticSegmentation`
|
10220
10253
|
#
|
10221
|
-
# * `arn:aws:lambda:
|
10254
|
+
# * `arn:aws:lambda:us-west-2:081040173940:function:PRE-AdjustmentSemanticSegmentation`
|
10222
10255
|
#
|
10223
|
-
# * `arn:aws:lambda:
|
10256
|
+
# * `arn:aws:lambda:ca-central-1:918755190332:function:PRE-AdjustmentSemanticSegmentation`
|
10224
10257
|
#
|
10225
|
-
# * `arn:aws:lambda:
|
10258
|
+
# * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-AdjustmentSemanticSegmentation`
|
10226
10259
|
#
|
10227
|
-
# * `arn:aws:lambda:
|
10260
|
+
# * `arn:aws:lambda:eu-west-2:487402164563:function:PRE-AdjustmentSemanticSegmentation`
|
10228
10261
|
#
|
10229
|
-
# * `arn:aws:lambda:
|
10262
|
+
# * `arn:aws:lambda:eu-central-1:203001061592:function:PRE-AdjustmentSemanticSegmentation`
|
10230
10263
|
#
|
10231
|
-
# * `arn:aws:lambda:ap-
|
10264
|
+
# * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-AdjustmentSemanticSegmentation`
|
10232
10265
|
#
|
10233
|
-
# * `arn:aws:lambda:ap-
|
10266
|
+
# * `arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-AdjustmentSemanticSegmentation`
|
10234
10267
|
#
|
10235
|
-
# * `arn:aws:lambda:ap-
|
10268
|
+
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-AdjustmentSemanticSegmentation`
|
10236
10269
|
#
|
10237
|
-
# * `arn:aws:lambda:ap-southeast-
|
10270
|
+
# * `arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-AdjustmentSemanticSegmentation`
|
10238
10271
|
#
|
10239
10272
|
# * `arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-AdjustmentSemanticSegmentation`
|
10240
10273
|
# @return [String]
|
@@ -11380,7 +11413,8 @@ module Aws::SageMaker
|
|
11380
11413
|
# }
|
11381
11414
|
#
|
11382
11415
|
# @!attribute [rw] default_resource_spec
|
11383
|
-
# The instance type and
|
11416
|
+
# The default instance type and the Amazon Resource Name (ARN) of the
|
11417
|
+
# SageMaker image created on the instance.
|
11384
11418
|
# @return [Types::ResourceSpec]
|
11385
11419
|
#
|
11386
11420
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/JupyterServerAppSettings AWS API Documentation
|
@@ -11403,7 +11437,8 @@ module Aws::SageMaker
|
|
11403
11437
|
# }
|
11404
11438
|
#
|
11405
11439
|
# @!attribute [rw] default_resource_spec
|
11406
|
-
# The instance type and
|
11440
|
+
# The default instance type and the Amazon Resource Name (ARN) of the
|
11441
|
+
# SageMaker image created on the instance.
|
11407
11442
|
# @return [Types::ResourceSpec]
|
11408
11443
|
#
|
11409
11444
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/KernelGatewayAppSettings AWS API Documentation
|
@@ -14555,6 +14590,10 @@ module Aws::SageMaker
|
|
14555
14590
|
# Provides information about the location that is configured for storing
|
14556
14591
|
# model artifacts.
|
14557
14592
|
#
|
14593
|
+
# Model artifacts are the output that results from training a model, and
|
14594
|
+
# typically consist of trained parameters, a model defintion that
|
14595
|
+
# desribes how to compute inferences, and other metadata.
|
14596
|
+
#
|
14558
14597
|
# @!attribute [rw] s3_model_artifacts
|
14559
14598
|
# The path of the S3 object that contains the model artifacts. For
|
14560
14599
|
# example, `s3://bucket-name/keynameprefix/model.tar.gz`.
|
@@ -15129,6 +15168,7 @@ module Aws::SageMaker
|
|
15129
15168
|
# "ProcessingEnvironmentKey" => "ProcessingEnvironmentValue",
|
15130
15169
|
# },
|
15131
15170
|
# network_config: {
|
15171
|
+
# enable_inter_container_traffic_encryption: false,
|
15132
15172
|
# enable_network_isolation: false,
|
15133
15173
|
# vpc_config: {
|
15134
15174
|
# security_group_ids: ["SecurityGroupId"], # required
|
@@ -15384,6 +15424,7 @@ module Aws::SageMaker
|
|
15384
15424
|
# "ProcessingEnvironmentKey" => "ProcessingEnvironmentValue",
|
15385
15425
|
# },
|
15386
15426
|
# network_config: {
|
15427
|
+
# enable_inter_container_traffic_encryption: false,
|
15387
15428
|
# enable_network_isolation: false,
|
15388
15429
|
# vpc_config: {
|
15389
15430
|
# security_group_ids: ["SecurityGroupId"], # required
|
@@ -15547,6 +15588,7 @@ module Aws::SageMaker
|
|
15547
15588
|
# data as a hash:
|
15548
15589
|
#
|
15549
15590
|
# {
|
15591
|
+
# enable_inter_container_traffic_encryption: false,
|
15550
15592
|
# enable_network_isolation: false,
|
15551
15593
|
# vpc_config: {
|
15552
15594
|
# security_group_ids: ["SecurityGroupId"], # required
|
@@ -15554,6 +15596,13 @@ module Aws::SageMaker
|
|
15554
15596
|
# },
|
15555
15597
|
# }
|
15556
15598
|
#
|
15599
|
+
# @!attribute [rw] enable_inter_container_traffic_encryption
|
15600
|
+
# Whether to encrypt all communications between distributed processing
|
15601
|
+
# jobs. Choose `True` to encrypt communications. Encryption provides
|
15602
|
+
# greater security for distributed processing jobs, but the processing
|
15603
|
+
# might take longer.
|
15604
|
+
# @return [Boolean]
|
15605
|
+
#
|
15557
15606
|
# @!attribute [rw] enable_network_isolation
|
15558
15607
|
# Whether to allow inbound and outbound network calls to and from the
|
15559
15608
|
# containers used for the processing job.
|
@@ -15575,6 +15624,7 @@ module Aws::SageMaker
|
|
15575
15624
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/NetworkConfig AWS API Documentation
|
15576
15625
|
#
|
15577
15626
|
class NetworkConfig < Struct.new(
|
15627
|
+
:enable_inter_container_traffic_encryption,
|
15578
15628
|
:enable_network_isolation,
|
15579
15629
|
:vpc_config)
|
15580
15630
|
include Aws::Structure
|
@@ -16917,13 +16967,14 @@ module Aws::SageMaker
|
|
16917
16967
|
# data as a hash:
|
16918
16968
|
#
|
16919
16969
|
# {
|
16920
|
-
# ui_template: {
|
16970
|
+
# ui_template: {
|
16921
16971
|
# content: "TemplateContent", # required
|
16922
16972
|
# },
|
16923
16973
|
# task: { # required
|
16924
16974
|
# input: "TaskInput", # required
|
16925
16975
|
# },
|
16926
16976
|
# role_arn: "RoleArn", # required
|
16977
|
+
# human_task_ui_arn: "HumanTaskUiArn",
|
16927
16978
|
# }
|
16928
16979
|
#
|
16929
16980
|
# @!attribute [rw] ui_template
|
@@ -16940,12 +16991,19 @@ module Aws::SageMaker
|
|
16940
16991
|
# that are used by the template.
|
16941
16992
|
# @return [String]
|
16942
16993
|
#
|
16994
|
+
# @!attribute [rw] human_task_ui_arn
|
16995
|
+
# The `HumanTaskUiArn` of the worker UI that you want to render. Do
|
16996
|
+
# not provide a `HumanTaskUiArn` if you use the `UiTemplate`
|
16997
|
+
# parameter.
|
16998
|
+
# @return [String]
|
16999
|
+
#
|
16943
17000
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RenderUiTemplateRequest AWS API Documentation
|
16944
17001
|
#
|
16945
17002
|
class RenderUiTemplateRequest < Struct.new(
|
16946
17003
|
:ui_template,
|
16947
17004
|
:task,
|
16948
|
-
:role_arn
|
17005
|
+
:role_arn,
|
17006
|
+
:human_task_ui_arn)
|
16949
17007
|
include Aws::Structure
|
16950
17008
|
end
|
16951
17009
|
|
@@ -17199,8 +17257,8 @@ module Aws::SageMaker
|
|
17199
17257
|
include Aws::Structure
|
17200
17258
|
end
|
17201
17259
|
|
17202
|
-
# The instance type and the Amazon Resource Name (ARN) of the
|
17203
|
-
# created on the instance. The ARN is stored as metadata in
|
17260
|
+
# The instance type and the Amazon Resource Name (ARN) of the SageMaker
|
17261
|
+
# image created on the instance. The ARN is stored as metadata in
|
17204
17262
|
# SageMaker Studio notebooks.
|
17205
17263
|
#
|
17206
17264
|
# @note When making an API call, you may pass ResourceSpec
|
@@ -17212,7 +17270,8 @@ module Aws::SageMaker
|
|
17212
17270
|
# }
|
17213
17271
|
#
|
17214
17272
|
# @!attribute [rw] sage_maker_image_arn
|
17215
|
-
# The Amazon Resource Name (ARN) of the image created on the
|
17273
|
+
# The Amazon Resource Name (ARN) of the SageMaker image created on the
|
17274
|
+
# instance.
|
17216
17275
|
# @return [String]
|
17217
17276
|
#
|
17218
17277
|
# @!attribute [rw] instance_type
|
@@ -17227,7 +17286,8 @@ module Aws::SageMaker
|
|
17227
17286
|
include Aws::Structure
|
17228
17287
|
end
|
17229
17288
|
|
17230
|
-
# The retention policy
|
17289
|
+
# The retention policy for data stored on an Amazon Elastic File System
|
17290
|
+
# (EFS) volume.
|
17231
17291
|
#
|
17232
17292
|
# @note When making an API call, you may pass RetentionPolicy
|
17233
17293
|
# data as a hash:
|
@@ -17237,7 +17297,10 @@ module Aws::SageMaker
|
|
17237
17297
|
# }
|
17238
17298
|
#
|
17239
17299
|
# @!attribute [rw] home_efs_file_system
|
17240
|
-
# The
|
17300
|
+
# The default is `Retain`, which specifies to keep the data stored on
|
17301
|
+
# the EFS volume.
|
17302
|
+
#
|
17303
|
+
# Specify `Delete` to delete the data stored on the EFS volume.
|
17241
17304
|
# @return [String]
|
17242
17305
|
#
|
17243
17306
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RetentionPolicy AWS API Documentation
|
@@ -17771,7 +17834,10 @@ module Aws::SageMaker
|
|
17771
17834
|
include Aws::Structure
|
17772
17835
|
end
|
17773
17836
|
|
17774
|
-
#
|
17837
|
+
# Specifies options when sharing an Amazon SageMaker Studio notebook.
|
17838
|
+
# These settings are specified as part of `DefaultUserSettings` when the
|
17839
|
+
# CreateDomain API is called, and as part of `UserSettings` when the
|
17840
|
+
# CreateUserProfile API is called.
|
17775
17841
|
#
|
17776
17842
|
# @note When making an API call, you may pass SharingSettings
|
17777
17843
|
# data as a hash:
|
@@ -17783,15 +17849,20 @@ module Aws::SageMaker
|
|
17783
17849
|
# }
|
17784
17850
|
#
|
17785
17851
|
# @!attribute [rw] notebook_output_option
|
17786
|
-
#
|
17852
|
+
# Whether to include the notebook cell output when sharing the
|
17853
|
+
# notebook. The default is `Disabled`.
|
17787
17854
|
# @return [String]
|
17788
17855
|
#
|
17789
17856
|
# @!attribute [rw] s3_output_path
|
17790
|
-
#
|
17857
|
+
# When `NotebookOutputOption` is `Allowed`, the Amazon S3 bucket used
|
17858
|
+
# to save the notebook cell output. If `S3OutputPath` isn't
|
17859
|
+
# specified, a default bucket is used.
|
17791
17860
|
# @return [String]
|
17792
17861
|
#
|
17793
17862
|
# @!attribute [rw] s3_kms_key_id
|
17794
|
-
#
|
17863
|
+
# When `NotebookOutputOption` is `Allowed`, the AWS Key Management
|
17864
|
+
# Service (KMS) encryption key ID used to encrypt the notebook cell
|
17865
|
+
# output in the Amazon S3 bucket.
|
17795
17866
|
# @return [String]
|
17796
17867
|
#
|
17797
17868
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SharingSettings AWS API Documentation
|
@@ -18285,7 +18356,8 @@ module Aws::SageMaker
|
|
18285
18356
|
# }
|
18286
18357
|
#
|
18287
18358
|
# @!attribute [rw] default_resource_spec
|
18288
|
-
# The instance type and
|
18359
|
+
# The default instance type and the Amazon Resource Name (ARN) of the
|
18360
|
+
# SageMaker image created on the instance.
|
18289
18361
|
# @return [Types::ResourceSpec]
|
18290
18362
|
#
|
18291
18363
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TensorBoardAppSettings AWS API Documentation
|
@@ -19979,23 +20051,33 @@ module Aws::SageMaker
|
|
19979
20051
|
# data as a hash:
|
19980
20052
|
#
|
19981
20053
|
# {
|
19982
|
-
# ui_template_s3_uri: "S3Uri",
|
20054
|
+
# ui_template_s3_uri: "S3Uri",
|
20055
|
+
# human_task_ui_arn: "HumanTaskUiArn",
|
19983
20056
|
# }
|
19984
20057
|
#
|
19985
20058
|
# @!attribute [rw] ui_template_s3_uri
|
19986
|
-
# The Amazon S3 bucket location of the UI template
|
19987
|
-
#
|
19988
|
-
#
|
20059
|
+
# The Amazon S3 bucket location of the UI template, or worker task
|
20060
|
+
# template. This is the template used to render the worker UI and
|
20061
|
+
# tools for labeling job tasks. For more information about the
|
20062
|
+
# contents of a UI template, see [ Creating Your Custom Labeling Task
|
20063
|
+
# Template][1].
|
19989
20064
|
#
|
19990
20065
|
#
|
19991
20066
|
#
|
19992
20067
|
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/sms-custom-templates-step2.html
|
19993
20068
|
# @return [String]
|
19994
20069
|
#
|
20070
|
+
# @!attribute [rw] human_task_ui_arn
|
20071
|
+
# The ARN of the worker task template used to render the worker UI and
|
20072
|
+
# tools for labeling job tasks. Do not use this parameter if you use
|
20073
|
+
# UiTemplateS3Uri.
|
20074
|
+
# @return [String]
|
20075
|
+
#
|
19995
20076
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UiConfig AWS API Documentation
|
19996
20077
|
#
|
19997
20078
|
class UiConfig < Struct.new(
|
19998
|
-
:ui_template_s3_uri
|
20079
|
+
:ui_template_s3_uri,
|
20080
|
+
:human_task_ui_arn)
|
19999
20081
|
include Aws::Structure
|
20000
20082
|
end
|
20001
20083
|
|
@@ -20115,7 +20197,7 @@ module Aws::SageMaker
|
|
20115
20197
|
# }
|
20116
20198
|
#
|
20117
20199
|
# @!attribute [rw] domain_id
|
20118
|
-
# The domain
|
20200
|
+
# The ID of the domain to be updated.
|
20119
20201
|
# @return [String]
|
20120
20202
|
#
|
20121
20203
|
# @!attribute [rw] default_user_settings
|
@@ -20131,7 +20213,7 @@ module Aws::SageMaker
|
|
20131
20213
|
end
|
20132
20214
|
|
20133
20215
|
# @!attribute [rw] domain_arn
|
20134
|
-
# The
|
20216
|
+
# The Amazon Resource Name (ARN) of the domain.
|
20135
20217
|
# @return [String]
|
20136
20218
|
#
|
20137
20219
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateDomainResponse AWS API Documentation
|
@@ -20349,6 +20431,7 @@ module Aws::SageMaker
|
|
20349
20431
|
# "ProcessingEnvironmentKey" => "ProcessingEnvironmentValue",
|
20350
20432
|
# },
|
20351
20433
|
# network_config: {
|
20434
|
+
# enable_inter_container_traffic_encryption: false,
|
20352
20435
|
# enable_network_isolation: false,
|
20353
20436
|
# vpc_config: {
|
20354
20437
|
# security_group_ids: ["SecurityGroupId"], # required
|