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

XPSImageModelArtifactSpec

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

Stores the locations and related metadata of the model artifacts. Populated for uCAIP requests only.

interface XPSImageModelArtifactSpec {
checkpointArtifact?: XPSModelArtifactItem;
exportArtifact?: XPSModelArtifactItem[];
labelGcsUri?: string;
servingArtifact?: XPSModelArtifactItem;
tfJsBinaryGcsPrefix?: string;
tfLiteMetadataGcsUri?: string;
}

§Properties

§
checkpointArtifact?: XPSModelArtifactItem
[src]

The Tensorflow checkpoint files. e.g. Used for resumable training.

§
exportArtifact?: XPSModelArtifactItem[]
[src]

The model binary files in different formats for model export.

§
labelGcsUri?: string
[src]

GCS uri of decoded labels file for model export 'dict.txt'.

§
servingArtifact?: XPSModelArtifactItem
[src]

The default model binary file used for serving (e.g. online predict, batch predict) via public Cloud AI Platform API.

§
tfJsBinaryGcsPrefix?: string
[src]

GCS uri prefix of Tensorflow JavaScript binary files 'groupX-shardXofX.bin' Deprecated.

§
tfLiteMetadataGcsUri?: string
[src]

GCS uri of Tensorflow Lite metadata 'tflite_metadata.json'.