Struct gapi_grpc::google::cloud::aiplatform::v1beta1::TensorboardExperiment[][src]

pub struct TensorboardExperiment {
    pub name: String,
    pub display_name: String,
    pub description: String,
    pub create_time: Option<Timestamp>,
    pub update_time: Option<Timestamp>,
    pub labels: HashMap<String, String>,
    pub etag: String,
    pub source: String,
}

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

Fields

name: String

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

display_name: String

User provided name of this TensorboardExperiment.

description: String

Description of this TensorboardExperiment.

create_time: Option<Timestamp>

Output only. Timestamp when this TensorboardExperiment was created.

update_time: Option<Timestamp>

Output only. Timestamp when this TensorboardExperiment was last updated.

labels: HashMap<String, String>

The labels with user-defined metadata to organize your Datasets.

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. 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. Following system labels exist for each Dataset:

etag: String

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

source: String

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

Trait Implementations

impl Clone for TensorboardExperiment[src]

impl Debug for TensorboardExperiment[src]

impl Default for TensorboardExperiment[src]

impl Message for TensorboardExperiment[src]

impl PartialEq<TensorboardExperiment> for TensorboardExperiment[src]

impl StructuralPartialEq for TensorboardExperiment[src]

Auto Trait Implementations

impl RefUnwindSafe for TensorboardExperiment

impl Send for TensorboardExperiment

impl Sync for TensorboardExperiment

impl Unpin for TensorboardExperiment

impl UnwindSafe for TensorboardExperiment

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]