bigquery
v2
|
#include <regression_metrics.h>
Public Member Functions | |
RegressionMetrics (const Json::Value &storage) | |
RegressionMetrics (Json::Value *storage) | |
virtual | ~RegressionMetrics () |
const StringPiece | GetTypeName () const |
bool | has_mean_absolute_error () const |
void | clear_mean_absolute_error () |
double | get_mean_absolute_error () const |
void | set_mean_absolute_error (double value) |
bool | has_mean_squared_error () const |
void | clear_mean_squared_error () |
double | get_mean_squared_error () const |
void | set_mean_squared_error (double value) |
bool | has_mean_squared_log_error () const |
void | clear_mean_squared_log_error () |
double | get_mean_squared_log_error () const |
void | set_mean_squared_log_error (double value) |
bool | has_median_absolute_error () const |
void | clear_median_absolute_error () |
double | get_median_absolute_error () const |
void | set_median_absolute_error (double value) |
bool | has_r_squared () const |
void | clear_r_squared () |
double | get_r_squared () const |
void | set_r_squared (double value) |
Static Public Member Functions | |
static RegressionMetrics * | New () |
Evaluation metrics for regression and explicit feedback type matrix factorization models.
|
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 'meanAbsoluteError
' attribute.
|
inline |
Clears the 'meanSquaredError
' attribute.
|
inline |
Clears the 'meanSquaredLogError
' attribute.
|
inline |
Clears the 'medianAbsoluteError
' attribute.
|
inline |
Clears the 'rSquared
' attribute.
|
inline |
Get the value of the 'meanAbsoluteError
' attribute.
|
inline |
Get the value of the 'meanSquaredError
' attribute.
|
inline |
Get the value of the 'meanSquaredLogError
' attribute.
|
inline |
Get the value of the 'medianAbsoluteError
' attribute.
|
inline |
Get the value of the 'rSquared
' attribute.
|
inline |
Returns a string denoting the type of this data object.
|
inline |
Determine if the 'meanAbsoluteError
' attribute was set.
meanAbsoluteError
' attribute was set.
|
inline |
Determine if the 'meanSquaredError
' attribute was set.
meanSquaredError
' attribute was set.
|
inline |
Determine if the 'meanSquaredLogError
' attribute was set.
meanSquaredLogError
' attribute was set.
|
inline |
Determine if the 'medianAbsoluteError
' attribute was set.
medianAbsoluteError
' attribute was set.
|
inline |
Determine if the 'rSquared
' attribute was set.
rSquared
' attribute was set.
|
static |
Creates a new default instance.
|
inline |
Change the 'meanAbsoluteError
' attribute.
Mean absolute error.
[in] | value | The new value. |
|
inline |
Change the 'meanSquaredError
' attribute.
Mean squared error.
[in] | value | The new value. |
|
inline |
Change the 'meanSquaredLogError
' attribute.
Mean squared log error.
[in] | value | The new value. |
|
inline |
Change the 'medianAbsoluteError
' attribute.
Median absolute error.
[in] | value | The new value. |
|
inline |
Change the 'rSquared
' attribute.
R^2 score.
[in] | value | The new value. |