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

XPSTablesDatasetMetadata

import type { XPSTablesDatasetMetadata } from "https://googleapis.deno.dev/v1/language:v2.ts";

Metadata for a dataset used for AutoML Tables. Next ID: 6

interface XPSTablesDatasetMetadata {
mlUseColumnId?: number;
primaryTableSpec?: XPSTableSpec;
targetColumnCorrelations?: {
[key: string]: XPSCorrelationStats;
}
;
targetColumnId?: number;
weightColumnId?: number;
}

§Properties

§
mlUseColumnId?: number
[src]

Id the column to split the table.

§
primaryTableSpec?: XPSTableSpec
[src]

Primary table.

§
targetColumnCorrelations?: {
[key: string]: XPSCorrelationStats;
}
[src]

(the column id : its CorrelationStats with target column).

§
targetColumnId?: number
[src]

Id of the primary table column that should be used as the training label.

§
weightColumnId?: number
[src]

Id of the primary table column that should be used as the weight column.