class Google::Apis::BigqueryV2::DataSplitResult
Data split result. This contains references to the training and evaluation data tables that were used to train the model.
Attributes
evaluation_table[RW]
Table
reference of the evaluation data after split. Corresponds to the JSON property `evaluationTable` @return [Google::Apis::BigqueryV2::TableReference]
training_table[RW]
Table
reference of the training data after split. Corresponds to the JSON property `trainingTable` @return [Google::Apis::BigqueryV2::TableReference]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/bigquery_v2/classes.rb, line 1475 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 1480 def update!(**args) @evaluation_table = args[:evaluation_table] if args.key?(:evaluation_table) @training_table = args[:training_table] if args.key?(:training_table) end