Class: Aws::Rekognition::Types::TestingData
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::TestingData
- Defined in:
- gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb
Overview
Note:
When making an API call, you may pass TestingData data as a hash:
{
assets: [
{
ground_truth_manifest: {
s3_object: {
bucket: "S3Bucket",
name: "S3ObjectName",
version: "S3ObjectVersion",
},
},
},
],
auto_create: false,
}
The dataset used for testing. Optionally, if AutoCreate
is set,
Amazon Rekognition Custom Labels creates a testing dataset using an
80/20 split of the training dataset.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#assets ⇒ Array<Types::Asset>
The assets used for testing.
-
#auto_create ⇒ Boolean
If specified, Amazon Rekognition Custom Labels creates a testing dataset with an 80/20 split of the training dataset.
Instance Attribute Details
#assets ⇒ Array<Types::Asset>
The assets used for testing.
5481 5482 5483 5484 5485 5486 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 5481 class TestingData < Struct.new( :assets, :auto_create) SENSITIVE = [] include Aws::Structure end |
#auto_create ⇒ Boolean
If specified, Amazon Rekognition Custom Labels creates a testing dataset with an 80/20 split of the training dataset.
5481 5482 5483 5484 5485 5486 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 5481 class TestingData < Struct.new( :assets, :auto_create) SENSITIVE = [] include Aws::Structure end |