Class: Google::Apis::BigqueryV2::MlStatistics

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ MlStatistics

Returns a new instance of MlStatistics.



6537
6538
6539
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6537

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#hparam_trialsArray<Google::Apis::BigqueryV2::HparamTuningTrial>

Output only. Trials of a hyperparameter tuning job sorted by trial_id. Corresponds to the JSON property hparamTrials



6512
6513
6514
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6512

def hparam_trials
  @hparam_trials
end

#iteration_resultsArray<Google::Apis::BigqueryV2::IterationResult>

Results for all completed iterations. Empty for hyperparameter tuning jobs. Corresponds to the JSON property iterationResults



6518
6519
6520
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6518

def iteration_results
  @iteration_results
end

#max_iterationsFixnum

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

Returns:

  • (Fixnum)


6525
6526
6527
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6525

def max_iterations
  @max_iterations
end

#model_typeString

Output only. The type of the model that is being trained. Corresponds to the JSON property modelType

Returns:

  • (String)


6530
6531
6532
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6530

def model_type
  @model_type
end

#training_typeString

Output only. Training type of the job. Corresponds to the JSON property trainingType

Returns:

  • (String)


6535
6536
6537
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6535

def training_type
  @training_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6542
6543
6544
6545
6546
6547
6548
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6542

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