Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1TensorboardTensor

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1TensorboardTensor

Returns a new instance of GoogleCloudAiplatformV1TensorboardTensor.



24283
24284
24285
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 24283

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#valueString

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.

Returns:

  • (String)


24276
24277
24278
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 24276

def value
  @value
end

#version_numberFixnum

Optional. Version number of TensorProto used to serialize value. Corresponds to the JSON property versionNumber

Returns:

  • (Fixnum)


24281
24282
24283
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 24281

def version_number
  @version_number
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



24288
24289
24290
24291
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 24288

def update!(**args)
  @value = args[:value] if args.key?(:value)
  @version_number = args[:version_number] if args.key?(:version_number)
end