|
bigquery
v2
|
#include <training_run.h>
Public Member Functions | |
| TrainingRun (const Json::Value &storage) | |
| TrainingRun (Json::Value *storage) | |
| virtual | ~TrainingRun () |
| const StringPiece | GetTypeName () const |
| bool | has_data_split_result () const |
| void | clear_data_split_result () |
| const DataSplitResult | get_data_split_result () const |
| DataSplitResult | mutable_dataSplitResult () |
| bool | has_evaluation_metrics () const |
| void | clear_evaluation_metrics () |
| const EvaluationMetrics | get_evaluation_metrics () const |
| EvaluationMetrics | mutable_evaluationMetrics () |
| bool | has_results () const |
| void | clear_results () |
| const client::JsonCppArray< IterationResult > | get_results () const |
| client::JsonCppArray< IterationResult > | mutable_results () |
| bool | has_start_time () const |
| void | clear_start_time () |
| const StringPiece | get_start_time () const |
| void | set_start_time (const StringPiece &value) |
| bool | has_training_options () const |
| void | clear_training_options () |
| const TrainingOptions | get_training_options () const |
| TrainingOptions | mutable_trainingOptions () |
Static Public Member Functions | |
| static TrainingRun * | New () |
Information about a single training query run for 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 'dataSplitResult' attribute.
|
inline |
Clears the 'evaluationMetrics' attribute.
|
inline |
Clears the 'results' attribute.
|
inline |
Clears the 'startTime' attribute.
|
inline |
Clears the 'trainingOptions' attribute.
| const DataSplitResult google_bigquery_api::TrainingRun::get_data_split_result | ( | ) | const |
Get a reference to the value of the 'dataSplitResult' attribute.
| const EvaluationMetrics google_bigquery_api::TrainingRun::get_evaluation_metrics | ( | ) | const |
Get a reference to the value of the 'evaluationMetrics' attribute.
| const client::JsonCppArray<IterationResult > google_bigquery_api::TrainingRun::get_results | ( | ) | const |
Get a reference to the value of the 'results' attribute.
|
inline |
Get the value of the 'startTime' attribute.
| const TrainingOptions google_bigquery_api::TrainingRun::get_training_options | ( | ) | const |
Get a reference to the value of the 'trainingOptions' attribute.
|
inline |
Returns a string denoting the type of this data object.
|
inline |
Determine if the 'dataSplitResult' attribute was set.
dataSplitResult' attribute was set.
|
inline |
Determine if the 'evaluationMetrics' attribute was set.
evaluationMetrics' attribute was set.
|
inline |
Determine if the 'results' attribute was set.
results' attribute was set.
|
inline |
Determine if the 'startTime' attribute was set.
startTime' attribute was set.
|
inline |
Determine if the 'trainingOptions' attribute was set.
trainingOptions' attribute was set. | DataSplitResult google_bigquery_api::TrainingRun::mutable_dataSplitResult | ( | ) |
Gets a reference to a mutable value of the 'dataSplitResult' property.
Data split result of the training run. Only set when the input data is actually split.
| EvaluationMetrics google_bigquery_api::TrainingRun::mutable_evaluationMetrics | ( | ) |
Gets a reference to a mutable value of the 'evaluationMetrics' property.
The evaluation metrics over training/eval data that were computed at the end of training.
| client::JsonCppArray<IterationResult > google_bigquery_api::TrainingRun::mutable_results | ( | ) |
Gets a reference to a mutable value of the 'results' property.
Output of each iteration run, results.size() <= max_iterations.
| TrainingOptions google_bigquery_api::TrainingRun::mutable_trainingOptions | ( | ) |
Gets a reference to a mutable value of the 'trainingOptions' property.
Options that were used for this training run, includes user specified and default options that were used.
|
static |
Creates a new default instance.
|
inline |
Change the 'startTime' attribute.
The start time of this training run.
| [in] | value | The new value. |