Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1AggregationOutput
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1AggregationOutput
- 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 aggregation result for the entire dataset and all metrics.
Instance Attribute Summary collapse
-
#aggregation_results ⇒ Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1AggregationResult>
One AggregationResult per metric.
-
#dataset ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EvaluationDataset
The dataset used for evaluation.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1AggregationOutput
constructor
A new instance of GoogleCloudAiplatformV1AggregationOutput.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1AggregationOutput
Returns a new instance of GoogleCloudAiplatformV1AggregationOutput.
775 776 777 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 775 def initialize(**args) update!(**args) end |
Instance Attribute Details
#aggregation_results ⇒ Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1AggregationResult>
One AggregationResult per metric.
Corresponds to the JSON property aggregationResults
768 769 770 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 768 def aggregation_results @aggregation_results end |
#dataset ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EvaluationDataset
The dataset used for evaluation.
Corresponds to the JSON property dataset
773 774 775 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 773 def dataset @dataset end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
780 781 782 783 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 780 def update!(**args) @aggregation_results = args[:aggregation_results] if args.key?(:aggregation_results) @dataset = args[:dataset] if args.key?(:dataset) end |