Class: Google::Apis::BigqueryV2::ModelExtractOptions
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::ModelExtractOptions
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/bigquery_v2/classes.rb,
lib/google/apis/bigquery_v2/representations.rb,
lib/google/apis/bigquery_v2/representations.rb
Overview
Options related to model extraction.
Instance Attribute Summary collapse
-
#trial_id ⇒ Fixnum
The 1-based ID of the trial to be exported from a hyperparameter tuning model.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ModelExtractOptions
constructor
A new instance of ModelExtractOptions.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ModelExtractOptions
Returns a new instance of ModelExtractOptions.
6786 6787 6788 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6786 def initialize(**args) update!(**args) end |
Instance Attribute Details
#trial_id ⇒ Fixnum
The 1-based ID of the trial to be exported from a hyperparameter tuning model.
If not specified, the trial with id = Model.defaultTrialId is exported. This field is ignored for
models not trained with hyperparameter tuning.
Corresponds to the JSON property trialId
6784 6785 6786 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6784 def trial_id @trial_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6791 6792 6793 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6791 def update!(**args) @trial_id = args[:trial_id] if args.key?(:trial_id) end |