Class: Google::Apis::MlV1::GoogleCloudMlV1ListOptimalTrialsResponse
- Inherits:
-
Object
- Object
- Google::Apis::MlV1::GoogleCloudMlV1ListOptimalTrialsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/ml_v1/classes.rb,
lib/google/apis/ml_v1/representations.rb,
lib/google/apis/ml_v1/representations.rb
Overview
The response message for the ListOptimalTrials method.
Instance Attribute Summary collapse
-
#trials ⇒ Array<Google::Apis::MlV1::GoogleCloudMlV1Trial>
The pareto-optimal trials for multiple objective study or the optimal trial for single objective study.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudMlV1ListOptimalTrialsResponse
constructor
A new instance of GoogleCloudMlV1ListOptimalTrialsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudMlV1ListOptimalTrialsResponse
Returns a new instance of GoogleCloudMlV1ListOptimalTrialsResponse.
1560 1561 1562 |
# File 'lib/google/apis/ml_v1/classes.rb', line 1560 def initialize(**args) update!(**args) end |
Instance Attribute Details
#trials ⇒ Array<Google::Apis::MlV1::GoogleCloudMlV1Trial>
The pareto-optimal trials for multiple objective study or the optimal trial
for single objective study. The definition of pareto-optimal can be checked in
wiki page. https://en.wikipedia.org/wiki/Pareto_efficiency
Corresponds to the JSON property trials
1558 1559 1560 |
# File 'lib/google/apis/ml_v1/classes.rb', line 1558 def trials @trials end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1565 1566 1567 |
# File 'lib/google/apis/ml_v1/classes.rb', line 1565 def update!(**args) @trials = args[:trials] if args.key?(:trials) end |