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

XPSImageObjectDetectionModelSpec

import type { XPSImageObjectDetectionModelSpec } from "https://googleapis.deno.dev/v1/language:v2.ts";
interface XPSImageObjectDetectionModelSpec {
classCount?: bigint;
exportModelSpec?: XPSImageExportModelSpec;
maxBoundingBoxCount?: bigint;
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

§
classCount?: bigint
[src]

Total number of classes.

§
maxBoundingBoxCount?: bigint
[src]

Max number of bounding box.

§
modelArtifactSpec?: XPSImageModelArtifactSpec
[src]

The fields below are only populated under uCAIP request scope.

§
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.