OmniSciDB
a5dc49c757
|
#include "Logger/Logger.h"
#include "Shared/StringTransform.h"
#include "Shared/misc.h"
#include <string>
Go to the source code of this file.
Enumerations | |
enum | MLModelType { LINEAR_REG, DECISION_TREE_REG, GBT_REG, RANDOM_FOREST_REG, PCA } |
Functions | |
std::string | get_ml_model_type_str (const MLModelType model_type) |
MLModelType | get_ml_model_type_from_str (const std::string &model_type_str) |
bool | is_regression_model (const MLModelType model_type) |
enum MLModelType |
Enumerator | |
---|---|
LINEAR_REG | |
DECISION_TREE_REG | |
GBT_REG | |
RANDOM_FOREST_REG | |
PCA |
Definition at line 25 of file MLModelType.h.
|
inline |
Definition at line 52 of file MLModelType.h.
References DECISION_TREE_REG, GBT_REG, LINEAR_REG, PCA, RANDOM_FOREST_REG, and to_upper().
Referenced by Parser::CreateModelStmt::CreateModelStmt().
|
inline |
Definition at line 27 of file MLModelType.h.
References CHECK, DECISION_TREE_REG, GBT_REG, LINEAR_REG, PCA, and RANDOM_FOREST_REG.
Referenced by Parser::CreateModelStmt::train_model().
|
inline |
Definition at line 69 of file MLModelType.h.
References DECISION_TREE_REG, GBT_REG, shared::is_any(), LINEAR_REG, and RANDOM_FOREST_REG.
Referenced by Parser::CreateModelStmt::build_model_query(), and EvaluateModelCommand::execute().