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

GoogleCloudAiplatformV1TuningJob

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

Represents a TuningJob that runs with Google owned models.

interface GoogleCloudAiplatformV1TuningJob {
baseModel?: string;
readonly createTime?: Date;
description?: string;
readonly endTime?: Date;
readonly error?: GoogleRpcStatus;
readonly experiment?: string;
labels?: {
[key: string]: string;
}
;
readonly name?: string;
readonly startTime?: Date;
readonly state?:
| "JOB_STATE_UNSPECIFIED"
| "JOB_STATE_QUEUED"
| "JOB_STATE_PENDING"
| "JOB_STATE_RUNNING"
| "JOB_STATE_SUCCEEDED"
| "JOB_STATE_FAILED"
| "JOB_STATE_CANCELLING"
| "JOB_STATE_CANCELLED"
| "JOB_STATE_PAUSED"
| "JOB_STATE_EXPIRED"
| "JOB_STATE_UPDATING"
| "JOB_STATE_PARTIALLY_SUCCEEDED";
readonly tunedModel?: GoogleCloudAiplatformV1TunedModel;
tunedModelDisplayName?: string;
readonly tuningDataStats?: GoogleCloudAiplatformV1TuningDataStats;
readonly updateTime?: Date;
}

§Properties

§
baseModel?: string
[src]

The base model that is being tuned, e.g., "gemini-1.0-pro-002".

§
readonly createTime?: Date
[src]

Output only. Time when the TuningJob was created.

§
description?: string
[src]

Optional. The description of the TuningJob.

§

Customer-managed encryption key options for a TuningJob. If this is set, then all resources created by the TuningJob will be encrypted with the provided encryption key.

§
readonly endTime?: Date
[src]

Output only. Time when the TuningJob entered any of the following JobStates: JOB_STATE_SUCCEEDED, JOB_STATE_FAILED, JOB_STATE_CANCELLED, JOB_STATE_EXPIRED.

§
readonly error?: GoogleRpcStatus
[src]

Output only. Only populated when job's state is JOB_STATE_FAILED or JOB_STATE_CANCELLED.

§
readonly experiment?: string
[src]

Output only. The Experiment associated with this TuningJob.

§
labels?: {
[key: string]: string;
}
[src]

Optional. The labels with user-defined metadata to organize TuningJob and generated resources such as Model and Endpoint. Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. See https://goo.gl/xmQnxf for more information and examples of labels.

§
readonly name?: string
[src]

Output only. Identifier. Resource name of a TuningJob. Format: projects/{project}/locations/{location}/tuningJobs/{tuning_job}

§
readonly startTime?: Date
[src]

Output only. Time when the TuningJob for the first time entered the JOB_STATE_RUNNING state.

§
readonly state?: "JOB_STATE_UNSPECIFIED" | "JOB_STATE_QUEUED" | "JOB_STATE_PENDING" | "JOB_STATE_RUNNING" | "JOB_STATE_SUCCEEDED" | "JOB_STATE_FAILED" | "JOB_STATE_CANCELLING" | "JOB_STATE_CANCELLED" | "JOB_STATE_PAUSED" | "JOB_STATE_EXPIRED" | "JOB_STATE_UPDATING" | "JOB_STATE_PARTIALLY_SUCCEEDED"
[src]

Output only. The detailed state of the job.

§

Tuning Spec for Supervised Fine Tuning.

§

Output only. The tuned model resources assiociated with this TuningJob.

§
tunedModelDisplayName?: string
[src]

Optional. The display name of the TunedModel. The name can be up to 128 characters long and can consist of any UTF-8 characters.

§

Output only. The tuning data statistics associated with this TuningJob.

§
readonly updateTime?: Date
[src]

Output only. Time when the TuningJob was most recently updated.