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
The dataset used for testing. Optionally, if AutoCreate
is set,
Amazon Rekognition Custom Labels uses the training dataset to create a
test dataset with a temporary 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 temporarily splits the training dataset (80%) to create a test dataset (20%) for the training job.
Instance Attribute Details
#assets ⇒ Array<Types::Asset>
The assets used for testing.
6220 6221 6222 6223 6224 6225 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 6220 class TestingData < Struct.new( :assets, :auto_create) SENSITIVE = [] include Aws::Structure end |
#auto_create ⇒ Boolean
If specified, Amazon Rekognition Custom Labels temporarily splits the training dataset (80%) to create a test dataset (20%) for the training job. After training completes, the test dataset is not stored and the training dataset reverts to its previous size.
6220 6221 6222 6223 6224 6225 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 6220 class TestingData < Struct.new( :assets, :auto_create) SENSITIVE = [] include Aws::Structure end |