ExportEvaluatedDataItemsConfig

Configuration for exporting test set predictions to a BigQuery table.

Fields
destinationBigqueryUri string

URI of desired destination BigQuery table. Expected format: bq://{projectId}:{datasetId}:{table}

If not specified, then results are exported to the following auto-created BigQuery table: {projectId}:export_evaluated_examples_{modelName}_{yyyy_MM_dd'T'HH_mm_ss_SSS'Z'}.evaluated_examples

overrideExistingTable boolean

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.

JSON representation
{
  "destinationBigqueryUri": string,
  "overrideExistingTable": boolean
}