Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EvaluationResults

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

The results of the evaluation run.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1EvaluationResults

Returns a new instance of GoogleCloudAiplatformV1EvaluationResults.



10378
10379
10380
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10378

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

Instance Attribute Details

#evaluation_setString

The evaluation set where item level results are stored. Corresponds to the JSON property evaluationSet

Returns:

  • (String)


10371
10372
10373
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10371

def evaluation_set
  @evaluation_set
end

#summary_metricsGoogle::Apis::AiplatformV1::GoogleCloudAiplatformV1SummaryMetrics

The summary metrics for the evaluation run. Corresponds to the JSON property summaryMetrics



10376
10377
10378
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10376

def summary_metrics
  @summary_metrics
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10383
10384
10385
10386
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10383

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