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

XPSImageSegmentationTrainResponse

import type { XPSImageSegmentationTrainResponse } from "https://googleapis.deno.dev/v1/language:v2.ts";
interface XPSImageSegmentationTrainResponse {
colorMaps?: XPSColorMap[];
exportModelSpec?: XPSImageExportModelSpec;
modelArtifactSpec?: XPSImageModelArtifactSpec;
modelServingSpec?: XPSImageModelServingSpec;
stopReason?:
| "TRAIN_STOP_REASON_UNSPECIFIED"
| "TRAIN_STOP_REASON_BUDGET_REACHED"
| "TRAIN_STOP_REASON_MODEL_CONVERGED"
| "TRAIN_STOP_REASON_MODEL_EARLY_STOPPED";
trainCostNodeSeconds?: bigint;
}

§Properties

§
colorMaps?: XPSColorMap[]
[src]

Color map of the model.

§

NOTE: These fields are not used/needed in EAP but will be set later.

§
modelArtifactSpec?: XPSImageModelArtifactSpec
[src]

The fields below are only populated under uCAIP request scope. Model

artifact spec stores and model gcs pathes and related metadata

§
stopReason?: "TRAIN_STOP_REASON_UNSPECIFIED" | "TRAIN_STOP_REASON_BUDGET_REACHED" | "TRAIN_STOP_REASON_MODEL_CONVERGED" | "TRAIN_STOP_REASON_MODEL_EARLY_STOPPED"
[src]

Stop reason for training job, e.g. 'TRAIN_BUDGET_REACHED', 'MODEL_CONVERGED'.

§
trainCostNodeSeconds?: bigint
[src]

The actual train cost of creating this model, expressed in node seconds, i.e. 3,600 value in this field means 1 node hour.