#[non_exhaustive]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,
/* private fields */
}Expand description
A TensorboardExperiment is a group of TensorboardRuns, that are typically the results of a training job run, in a Tensorboard.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: StringOutput only. Name of the TensorboardExperiment.
Format:
projects/{project}/locations/{location}/tensorboards/{tensorboard}/experiments/{experiment}
display_name: StringUser provided name of this TensorboardExperiment.
description: StringDescription 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 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.
etag: StringUsed to perform consistent read-modify-write updates. If not set, a blind “overwrite” update happens.
source: StringImmutable. Source of the TensorboardExperiment. Example: a custom training job.
Implementations§
Source§impl TensorboardExperiment
impl TensorboardExperiment
pub fn new() -> Self
Sourcepub fn set_display_name<T: Into<String>>(self, v: T) -> Self
pub fn set_display_name<T: Into<String>>(self, v: T) -> Self
Sets the value of display_name.
Sourcepub fn set_description<T: Into<String>>(self, v: T) -> Self
pub fn set_description<T: Into<String>>(self, v: T) -> Self
Sets the value of description.
Sourcepub fn set_create_time<T: Into<Option<Timestamp>>>(self, v: T) -> Self
pub fn set_create_time<T: Into<Option<Timestamp>>>(self, v: T) -> Self
Sets the value of create_time.
Sourcepub fn set_update_time<T: Into<Option<Timestamp>>>(self, v: T) -> Self
pub fn set_update_time<T: Into<Option<Timestamp>>>(self, v: T) -> Self
Sets the value of update_time.
Sourcepub fn set_labels<T, K, V>(self, v: T) -> Self
pub fn set_labels<T, K, V>(self, v: T) -> Self
Sets the value of labels.
Sourcepub fn set_source<T: Into<String>>(self, v: T) -> Self
pub fn set_source<T: Into<String>>(self, v: T) -> Self
Sets the value of source.
Trait Implementations§
Source§impl Clone for TensorboardExperiment
impl Clone for TensorboardExperiment
Source§fn clone(&self) -> TensorboardExperiment
fn clone(&self) -> TensorboardExperiment
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more