Class: Aws::Rekognition::Types::ValidationData
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::ValidationData
- Defined in:
- gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb
Overview
Contains the Amazon S3 bucket location of the validation data for a model training job.
The validation data includes error information for individual JSON Lines in the dataset. For more information, see Debugging a Failed Model Training in the Amazon Rekognition Custom Labels Developer Guide.
You get the ValidationData
object for the training dataset
(TrainingDataResult) and the test dataset (TestingDataResult) by
calling DescribeProjectVersions.
The assets array contains a single Asset object. The GroundTruthManifest field of the Asset object contains the S3 bucket location of the validation data.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#assets ⇒ Array<Types::Asset>
The assets that comprise the validation data.
Instance Attribute Details
#assets ⇒ Array<Types::Asset>
The assets that comprise the validation data.
8263 8264 8265 8266 8267 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 8263 class ValidationData < Struct.new( :assets) SENSITIVE = [] include Aws::Structure end |