Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1LossAnalysisResult

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

The top-level result for loss analysis, stored within an EvalSet.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1LossAnalysisResult

Returns a new instance of GoogleCloudAiplatformV1beta1LossAnalysisResult.



25027
25028
25029
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 25027

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

Instance Attribute Details

#analysis_timeString

The timestamp when this analysis was performed. Corresponds to the JSON property analysisTime

Returns:

  • (String)


25015
25016
25017
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 25015

def analysis_time
  @analysis_time
end

#clustersArray<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1LossCluster>

The list of identified loss clusters. Corresponds to the JSON property clusters



25020
25021
25022
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 25020

def clusters
  @clusters
end

#configGoogle::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1LossAnalysisConfig

Configuration for the loss analysis job. Corresponds to the JSON property config



25025
25026
25027
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 25025

def config
  @config
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



25032
25033
25034
25035
25036
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 25032

def update!(**args)
  @analysis_time = args[:analysis_time] if args.key?(:analysis_time)
  @clusters = args[:clusters] if args.key?(:clusters)
  @config = args[:config] if args.key?(:config)
end