Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1TensorboardTensor
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1TensorboardTensor
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1/classes.rb,
lib/google/apis/aiplatform_v1/representations.rb,
lib/google/apis/aiplatform_v1/representations.rb
Overview
One point viewable on a tensor metric plot.
Instance Attribute Summary collapse
-
#value ⇒ String
Required.
-
#version_number ⇒ Fixnum
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1TensorboardTensor
constructor
A new instance of GoogleCloudAiplatformV1TensorboardTensor.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1TensorboardTensor
Returns a new instance of GoogleCloudAiplatformV1TensorboardTensor.
37257 37258 37259 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 37257 def initialize(**args) update!(**args) end |
Instance Attribute Details
#value ⇒ String
Required. Serialized form of https://github.com/tensorflow/tensorflow/blob/
master/tensorflow/core/framework/tensor.proto
Corresponds to the JSON property value
NOTE: Values are automatically base64 encoded/decoded in the client library.
37250 37251 37252 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 37250 def value @value end |
#version_number ⇒ Fixnum
Optional. Version number of TensorProto used to serialize value.
Corresponds to the JSON property versionNumber
37255 37256 37257 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 37255 def version_number @version_number end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
37262 37263 37264 37265 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 37262 def update!(**args) @value = args[:value] if args.key?(:value) @version_number = args[:version_number] if args.key?(:version_number) end |