Class: Google::Apis::BigqueryV2::MlStatistics
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::MlStatistics
- 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
Job statistics specific to a BigQuery ML training job.
Instance Attribute Summary collapse
-
#hparam_trials ⇒ Array<Google::Apis::BigqueryV2::HparamTuningTrial>
Output only.
-
#iteration_results ⇒ Array<Google::Apis::BigqueryV2::IterationResult>
Results for all completed iterations.
-
#max_iterations ⇒ Fixnum
Output only.
-
#model_type ⇒ String
Output only.
-
#training_type ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MlStatistics
constructor
A new instance of MlStatistics.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ MlStatistics
Returns a new instance of MlStatistics.
6563 6564 6565 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6563 def initialize(**args) update!(**args) end |
Instance Attribute Details
#hparam_trials ⇒ Array<Google::Apis::BigqueryV2::HparamTuningTrial>
Output only. Trials of a hyperparameter tuning job sorted by
trial_id.
Corresponds to the JSON property hparamTrials
6538 6539 6540 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6538 def hparam_trials @hparam_trials end |
#iteration_results ⇒ Array<Google::Apis::BigqueryV2::IterationResult>
Results for all completed iterations. Empty for hyperparameter tuning jobs.
Corresponds to the JSON property iterationResults
6544 6545 6546 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6544 def iteration_results @iteration_results end |
#max_iterations ⇒ Fixnum
Output only. Maximum number of iterations specified as max_iterations in the '
CREATE MODEL' query. The actual number of iterations may be less than this
number due to early stop.
Corresponds to the JSON property maxIterations
6551 6552 6553 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6551 def max_iterations @max_iterations end |
#model_type ⇒ String
Output only. The type of the model that is being trained.
Corresponds to the JSON property modelType
6556 6557 6558 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6556 def model_type @model_type end |
#training_type ⇒ String
Output only. Training type of the job.
Corresponds to the JSON property trainingType
6561 6562 6563 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6561 def training_type @training_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6568 6569 6570 6571 6572 6573 6574 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6568 def update!(**args) @hparam_trials = args[:hparam_trials] if args.key?(:hparam_trials) @iteration_results = args[:iteration_results] if args.key?(:iteration_results) @max_iterations = args[:max_iterations] if args.key?(:max_iterations) @model_type = args[:model_type] if args.key?(:model_type) @training_type = args[:training_type] if args.key?(:training_type) end |