Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1TimeSeriesDataPoint

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

A TensorboardTimeSeries data point.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1TimeSeriesDataPoint

Returns a new instance of GoogleCloudAiplatformV1beta1TimeSeriesDataPoint.



33713
33714
33715
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 33713

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

Instance Attribute Details

#blobsGoogle::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1TensorboardBlobSequence

One point viewable on a blob metric plot, but mostly just a wrapper message to work around repeated fields can't be used directly within oneof fields. Corresponds to the JSON property blobs



33691
33692
33693
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 33691

def blobs
  @blobs
end

#scalarGoogle::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Scalar

One point viewable on a scalar metric plot. Corresponds to the JSON property scalar



33696
33697
33698
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 33696

def scalar
  @scalar
end

#stepFixnum

Step index of this data point within the run. Corresponds to the JSON property step

Returns:

  • (Fixnum)


33701
33702
33703
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 33701

def step
  @step
end

#tensorGoogle::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1TensorboardTensor

One point viewable on a tensor metric plot. Corresponds to the JSON property tensor



33706
33707
33708
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 33706

def tensor
  @tensor
end

#wall_timeString

Wall clock timestamp when this data point is generated by the end user. Corresponds to the JSON property wallTime

Returns:

  • (String)


33711
33712
33713
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 33711

def wall_time
  @wall_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



33718
33719
33720
33721
33722
33723
33724
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 33718

def update!(**args)
  @blobs = args[:blobs] if args.key?(:blobs)
  @scalar = args[:scalar] if args.key?(:scalar)
  @step = args[:step] if args.key?(:step)
  @tensor = args[:tensor] if args.key?(:tensor)
  @wall_time = args[:wall_time] if args.key?(:wall_time)
end