AWSRekognitionTestingData

Objective-C

@interface AWSRekognitionTestingData

Swift

class AWSRekognitionTestingData

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.

  • The assets used for testing.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<AWSRekognitionAsset *> *_Nullable assets;

    Swift

    var assets: [AWSRekognitionAsset]? { get set }
  • 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.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable autoCreate;

    Swift

    var autoCreate: NSNumber? { get set }