Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1LossAnalysisResult
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1LossAnalysisResult
- 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
-
#analysis_time ⇒ String
The timestamp when this analysis was performed.
-
#clusters ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1LossCluster>
The list of identified loss clusters.
-
#config ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1LossAnalysisConfig
Configuration for the loss analysis job.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1LossAnalysisResult
constructor
A new instance of GoogleCloudAiplatformV1beta1LossAnalysisResult.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1LossAnalysisResult
Returns a new instance of GoogleCloudAiplatformV1beta1LossAnalysisResult.
29965 29966 29967 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 29965 def initialize(**args) update!(**args) end |
Instance Attribute Details
#analysis_time ⇒ String
The timestamp when this analysis was performed.
Corresponds to the JSON property analysisTime
29953 29954 29955 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 29953 def analysis_time @analysis_time end |
#clusters ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1LossCluster>
The list of identified loss clusters.
Corresponds to the JSON property clusters
29958 29959 29960 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 29958 def clusters @clusters end |
#config ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1LossAnalysisConfig
Configuration for the loss analysis job.
Corresponds to the JSON property config
29963 29964 29965 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 29963 def config @config end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
29970 29971 29972 29973 29974 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 29970 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 |