bigquery
v2
|
#include <data_split_result.h>
Public Member Functions | |
DataSplitResult (const Json::Value &storage) | |
DataSplitResult (Json::Value *storage) | |
virtual | ~DataSplitResult () |
const StringPiece | GetTypeName () const |
bool | has_evaluation_table () const |
void | clear_evaluation_table () |
const TableReference | get_evaluation_table () const |
TableReference | mutable_evaluationTable () |
bool | has_training_table () const |
void | clear_training_table () |
const TableReference | get_training_table () const |
TableReference | mutable_trainingTable () |
Static Public Member Functions | |
static DataSplitResult * | New () |
Data split result. This contains references to the training and evaluation data tables that were used to train the model.
|
explicit |
Standard constructor for an immutable data object instance.
[in] | storage | The underlying data storage for this instance. |
|
explicit |
Standard constructor for a mutable data object instance.
[in] | storage | The underlying data storage for this instance. |
|
virtual |
Standard destructor.
|
inline |
Clears the 'evaluationTable
' attribute.
|
inline |
Clears the 'trainingTable
' attribute.
const TableReference google_bigquery_api::DataSplitResult::get_evaluation_table | ( | ) | const |
Get a reference to the value of the 'evaluationTable
' attribute.
const TableReference google_bigquery_api::DataSplitResult::get_training_table | ( | ) | const |
Get a reference to the value of the 'trainingTable
' attribute.
|
inline |
Returns a string denoting the type of this data object.
|
inline |
Determine if the 'evaluationTable
' attribute was set.
evaluationTable
' attribute was set.
|
inline |
Determine if the 'trainingTable
' attribute was set.
trainingTable
' attribute was set. TableReference google_bigquery_api::DataSplitResult::mutable_evaluationTable | ( | ) |
Gets a reference to a mutable value of the 'evaluationTable
' property.
Table reference of the evaluation data after split.
TableReference google_bigquery_api::DataSplitResult::mutable_trainingTable | ( | ) |
Gets a reference to a mutable value of the 'trainingTable
' property.
Table reference of the training data after split.
|
static |
Creates a new default instance.