Class: Aws::Rekognition::Types::TestingData

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#assetsArray<Types::Asset>

The assets used for testing.

Returns:



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_createBoolean

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.

Returns:

  • (Boolean)


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