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

GoogleCloudAiplatformV1TensorboardExperiment

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

A TensorboardExperiment is a group of TensorboardRuns, that are typically the results of a training job run, in a Tensorboard.

interface GoogleCloudAiplatformV1TensorboardExperiment {
readonly createTime?: Date;
description?: string;
displayName?: string;
etag?: string;
labels?: {
[key: string]: string;
}
;
readonly name?: string;
source?: string;
readonly updateTime?: Date;
}

§Properties

§
readonly createTime?: Date
[src]

Output only. Timestamp when this TensorboardExperiment was created.

§
description?: string
[src]

Description of this TensorboardExperiment.

§
displayName?: string
[src]

User provided name of this TensorboardExperiment.

§
etag?: string
[src]

Used to perform consistent read-modify-write updates. If not set, a blind "overwrite" update happens.

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

The labels with user-defined metadata to organize your TensorboardExperiment. Label keys and values cannot be longer than 64 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. No more than 64 user labels can be associated with one Dataset (System labels are excluded). See https://goo.gl/xmQnxf for more information and examples of labels. System reserved label keys are prefixed with aiplatform.googleapis.com/ and are immutable. The following system labels exist for each Dataset: * aiplatform.googleapis.com/dataset_metadata_schema: output only. Its value is the metadata_schema's title.

§
readonly name?: string
[src]

Output only. Name of the TensorboardExperiment. Format: projects/{project}/locations/{location}/tensorboards/{tensorboard}/experiments/{experiment}

§
source?: string
[src]

Immutable. Source of the TensorboardExperiment. Example: a custom training job.

§
readonly updateTime?: Date
[src]

Output only. Timestamp when this TensorboardExperiment was last updated.