Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1CreateTensorboardRunRequest
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1CreateTensorboardRunRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1beta1/classes.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb
Overview
Request message for TensorboardService.CreateTensorboardRun.
Instance Attribute Summary collapse
-
#parent ⇒ String
Required.
-
#tensorboard_run ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1TensorboardRun
TensorboardRun maps to a specific execution of a training job with a given set of hyperparameter values, model definition, dataset, etc Corresponds to the JSON property
tensorboardRun
. -
#tensorboard_run_id ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1CreateTensorboardRunRequest
constructor
A new instance of GoogleCloudAiplatformV1beta1CreateTensorboardRunRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1CreateTensorboardRunRequest
Returns a new instance of GoogleCloudAiplatformV1beta1CreateTensorboardRunRequest.
2887 2888 2889 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 2887 def initialize(**args) update!(**args) end |
Instance Attribute Details
#parent ⇒ String
Required. The resource name of the TensorboardExperiment to create the
TensorboardRun in. Format: projects/
project/locations/
location/
tensorboards/
tensorboard/experiments/
experiment`
Corresponds to the JSON property
parent`
2872 2873 2874 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 2872 def parent @parent end |
#tensorboard_run ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1TensorboardRun
TensorboardRun maps to a specific execution of a training job with a given set
of hyperparameter values, model definition, dataset, etc
Corresponds to the JSON property tensorboardRun
2878 2879 2880 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 2878 def tensorboard_run @tensorboard_run end |
#tensorboard_run_id ⇒ String
Required. The ID to use for the Tensorboard run, which becomes the final
component of the Tensorboard run's resource name. This value should be 1-128
characters, and valid characters are /a-z-/
.
Corresponds to the JSON property tensorboardRunId
2885 2886 2887 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 2885 def tensorboard_run_id @tensorboard_run_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2892 2893 2894 2895 2896 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 2892 def update!(**args) @parent = args[:parent] if args.key?(:parent) @tensorboard_run = args[:tensorboard_run] if args.key?(:tensorboard_run) @tensorboard_run_id = args[:tensorboard_run_id] if args.key?(:tensorboard_run_id) end |