Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1TimeSeriesDataPoint
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1TimeSeriesDataPoint
- 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
-
#blobs ⇒ Google::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. -
#scalar ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Scalar
One point viewable on a scalar metric plot.
-
#step ⇒ Fixnum
Step index of this data point within the run.
-
#tensor ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1TensorboardTensor
One point viewable on a tensor metric plot.
-
#wall_time ⇒ String
Wall clock timestamp when this data point is generated by the end user.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1TimeSeriesDataPoint
constructor
A new instance of GoogleCloudAiplatformV1beta1TimeSeriesDataPoint.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1TimeSeriesDataPoint
Returns a new instance of GoogleCloudAiplatformV1beta1TimeSeriesDataPoint.
25252 25253 25254 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 25252 def initialize(**args) update!(**args) end |
Instance Attribute Details
#blobs ⇒ Google::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
25230 25231 25232 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 25230 def blobs @blobs end |
#scalar ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Scalar
One point viewable on a scalar metric plot.
Corresponds to the JSON property scalar
25235 25236 25237 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 25235 def scalar @scalar end |
#step ⇒ Fixnum
Step index of this data point within the run.
Corresponds to the JSON property step
25240 25241 25242 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 25240 def step @step end |
#tensor ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1TensorboardTensor
One point viewable on a tensor metric plot.
Corresponds to the JSON property tensor
25245 25246 25247 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 25245 def tensor @tensor end |
#wall_time ⇒ String
Wall clock timestamp when this data point is generated by the end user.
Corresponds to the JSON property wallTime
25250 25251 25252 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 25250 def wall_time @wall_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
25257 25258 25259 25260 25261 25262 25263 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 25257 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 |