class Google::Apis::BigqueryV2::BigQueryModelTraining
Attributes
current_iteration[RW]
- Output-only, Beta
-
Index of current ML training iteration. Updated during
create model query job to show job progress. Corresponds to the JSON property `currentIteration` @return [Fixnum]
expected_total_iterations[RW]
- Output-only, Beta
-
Expected number of iterations for the create model query
job specified as num_iterations in the input query. The actual total number of iterations may be less than this number due to early stop. Corresponds to the JSON property `expectedTotalIterations` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/bigquery_v2/classes.rb, line 633 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/bigquery_v2/classes.rb, line 638 def update!(**args) @current_iteration = args[:current_iteration] if args.key?(:current_iteration) @expected_total_iterations = args[:expected_total_iterations] if args.key?(:expected_total_iterations) end