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

GoogleCloudAiplatformV1ModelDataStats

import type { GoogleCloudAiplatformV1ModelDataStats } from "https://googleapis.deno.dev/v1/aiplatform:v1.ts";

Stats of data used for train or evaluate the Model.

interface GoogleCloudAiplatformV1ModelDataStats {
testAnnotationsCount?: bigint;
testDataItemsCount?: bigint;
trainingAnnotationsCount?: bigint;
trainingDataItemsCount?: bigint;
validationAnnotationsCount?: bigint;
validationDataItemsCount?: bigint;
}

§Properties

§
testAnnotationsCount?: bigint
[src]

Number of Annotations that are used for evaluating this Model. If the Model is evaluated multiple times, this will be the number of test Annotations used by the first evaluation. If the Model is not evaluated, the number is 0.

§
testDataItemsCount?: bigint
[src]

Number of DataItems that were used for evaluating this Model. If the Model is evaluated multiple times, this will be the number of test DataItems used by the first evaluation. If the Model is not evaluated, the number is 0.

§
trainingAnnotationsCount?: bigint
[src]

Number of Annotations that are used for training this Model.

§
trainingDataItemsCount?: bigint
[src]

Number of DataItems that were used for training this Model.

§
validationAnnotationsCount?: bigint
[src]

Number of Annotations that are used for validating this Model during training.

§
validationDataItemsCount?: bigint
[src]

Number of DataItems that were used for validating this Model during training.