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

GoogleCloudAiplatformV1SchemaTrainingjobDefinitionExportEvaluatedDataItemsConfig

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

Configuration for exporting test set predictions to a BigQuery table.

interface GoogleCloudAiplatformV1SchemaTrainingjobDefinitionExportEvaluatedDataItemsConfig {
destinationBigqueryUri?: string;
overrideExistingTable?: boolean;
}

§Properties

§
destinationBigqueryUri?: string
[src]

URI of desired destination BigQuery table. Expected format: bq://{project_id}:{dataset_id}:{table} If not specified, then results are exported to the following auto-created BigQuery table: {project_id}:export_evaluated_examples_{model_name}_{yyyy_MM_dd'T'HH_mm_ss_SSS'Z'}.evaluated_examples

§
overrideExistingTable?: boolean
[src]

If true and an export destination is specified, then the contents of the destination are overwritten. Otherwise, if the export destination already exists, then the export operation fails.