class Google::Apis::BigqueryV2::ModelDefinition
Attributes
model_options[RW]
- Output-only, Beta
-
Model
options used for the first training run. These
options are immutable for subsequent training runs. Default values are used for any options not specified in the input query. Corresponds to the JSON property `modelOptions` @return [Google::Apis::BigqueryV2::ModelDefinition::ModelOptions]
training_runs[RW]
- Output-only, Beta
-
Information about ml training runs, each training run
comprises of multiple iterations and there may be multiple training runs for the model if warm start is used or if a user decides to continue a previously cancelled query. Corresponds to the JSON property `trainingRuns` @return [Array<Google::Apis::BigqueryV2::BqmlTrainingRun>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/bigquery_v2/classes.rb, line 4647 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 4652 def update!(**args) @model_options = args[:model_options] if args.key?(:model_options) @training_runs = args[:training_runs] if args.key?(:training_runs) end