class Google::Apis::BigqueryV2::ModelDefinition::ModelOptions
- Output-only, Beta
-
Modeloptions 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.
Attributes
labels[RW]
Corresponds to the JSON property `labels` @return [Array<String>]
loss_type[RW]
Corresponds to the JSON property `lossType` @return [String]
model_type[RW]
Corresponds to the JSON property `modelType` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/bigquery_v2/classes.rb, line 4678 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 4683 def update!(**args) @labels = args[:labels] if args.key?(:labels) @loss_type = args[:loss_type] if args.key?(:loss_type) @model_type = args[:model_type] if args.key?(:model_type) end