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

GoogleCloudAiplatformV1ModelExportFormat

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

Represents export format supported by the Model. All formats export to Google Cloud Storage.

interface GoogleCloudAiplatformV1ModelExportFormat {
readonly exportableContents?: "EXPORTABLE_CONTENT_UNSPECIFIED" | "ARTIFACT" | "IMAGE"[];
readonly id?: string;
}

§Properties

§
readonly exportableContents?: "EXPORTABLE_CONTENT_UNSPECIFIED" | "ARTIFACT" | "IMAGE"[]
[src]

Output only. The content of this Model that may be exported.

§
readonly id?: string
[src]

Output only. The ID of the export format. The possible format IDs are: * tflite Used for Android mobile devices. * edgetpu-tflite Used for Edge TPU devices. * tf-saved-model A tensorflow model in SavedModel format. * tf-js A TensorFlow.js model that can be used in the browser and in Node.js using JavaScript. * core-ml Used for iOS mobile devices. * custom-trained A Model that was uploaded or trained by custom code.