Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ValidationData

import type { ValidationData } from "https://aws-api.deno.dev/v0.4/services/rekognition.ts?docs=full";

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.

interface ValidationData {
Assets?: Asset[] | null;
}

§Properties

§
Assets?: Asset[] | null
[src]

The assets that comprise the validation data.