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

GoogleCloudAiplatformV1FractionSplit

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

Assigns the input data to training, validation, and test sets as per the given fractions. Any of training_fraction, validation_fraction and test_fraction may optionally be provided, they must sum to up to 1. If the provided ones sum to less than 1, the remainder is assigned to sets as decided by Vertex AI. If none of the fractions are set, by default roughly 80% of data is used for training, 10% for validation, and 10% for test.

interface GoogleCloudAiplatformV1FractionSplit {
testFraction?: number;
trainingFraction?: number;
validationFraction?: number;
}

§Properties

§
testFraction?: number
[src]

The fraction of the input data that is to be used to evaluate the Model.

§
trainingFraction?: number
[src]

The fraction of the input data that is to be used to train the Model.

§
validationFraction?: number
[src]

The fraction of the input data that is to be used to validate the Model.