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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-rekognition/types.rb

Overview

The dataset used for testing. Optionally, if ‘AutoCreate` is set, Amazon Rekognition 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:



7826
7827
7828
7829
7830
7831
# File 'lib/aws-sdk-rekognition/types.rb', line 7826

class TestingData < Struct.new(
  :assets,
  :auto_create)
  SENSITIVE = []
  include Aws::Structure
end

#auto_createBoolean

If specified, Rekognition splits training dataset to create a test dataset for the training job.

Returns:

  • (Boolean)


7826
7827
7828
7829
7830
7831
# File 'lib/aws-sdk-rekognition/types.rb', line 7826

class TestingData < Struct.new(
  :assets,
  :auto_create)
  SENSITIVE = []
  include Aws::Structure
end