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.
986 987 988 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 986 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
979 980 981 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 979 def aggregation_results @aggregation_results end |
#dataset ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EvaluationDataset
The dataset used for evaluation.
Corresponds to the JSON property dataset
984 985 986 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 984 def dataset @dataset end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
991 992 993 994 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 991 def update!(**args) @aggregation_results = args[:aggregation_results] if args.key?(:aggregation_results) @dataset = args[:dataset] if args.key?(:dataset) end |