#include "EST_String.h"
#include "EST_Val.h"
#include "EST_TVector.h"
#include "EST_TList.h"
#include "EST_simplestats.h"
#include "EST_Track.h"
#include "siod.h"
Go to the source code of this file.
|
enum | wn_dtype {
wndt_binary,
wndt_float,
wndt_class,
wndt_cluster,
wndt_vector,
wndt_matrix,
wndt_trajectory,
wndt_ols,
wndt_ignore
} |
|
enum | wn_oper {
wnop_equal,
wnop_binary,
wnop_greaterthan,
wnop_lessthan,
wnop_is,
wnop_in,
wnop_matches
} |
|
enum | wnim_type {
wnim_unset,
wnim_float,
wnim_class,
wnim_cluster,
wnim_vector,
wnim_matrix,
wnim_ols,
wnim_trajectory
} |
|
|
void | wgn_load_datadescription (EST_String fname, LISP ignores) |
|
void | wgn_load_dataset (WDataSet &ds, EST_String fname) |
|
WNode * | wgn_build_tree (float &score) |
|
WNode * | wgn_build_dlist (float &score, ostream *output) |
|
WNode * | wagon_stepwise (float limit) |
|
float | wgn_score_question (WQuestion &q, WVectorVector &ds) |
|
void | wgn_find_split (WQuestion &q, WVectorVector &ds, WVectorVector &y, WVectorVector &n) |
|
float | summary_results (WNode &tree, ostream *output) |
|
int | wagon_ask_question (LISP question, LISP value) |
|
int | stepwise_ols (const EST_FMatrix &X, const EST_FMatrix &Y, const EST_StrList &feat_names, float limit, EST_FMatrix &coeffs, const EST_FMatrix &Xtest, const EST_FMatrix &Ytest, EST_IVector &included, float &best_score) |
|
int | robust_ols (const EST_FMatrix &X, const EST_FMatrix &Y, EST_IVector &included, EST_FMatrix &coeffs) |
|
int | ols_apply (const EST_FMatrix &samples, const EST_FMatrix &coeffs, EST_FMatrix &res) |
|
int | ols_test (const EST_FMatrix &real, const EST_FMatrix &predicted, float &correlation, float &rmse) |
|
#define wagon_error |
( |
|
WMESS | ) |
(std::cerr << WMESS << std::endl,exit(-1)) |
#define WGN_HUGE_VAL 1.0e20 |
Enumerator |
---|
wndt_binary |
|
wndt_float |
|
wndt_class |
|
wndt_cluster |
|
wndt_vector |
|
wndt_matrix |
|
wndt_trajectory |
|
wndt_ols |
|
wndt_ignore |
|
Definition at line 70 of file EST_Wagon.h.
Enumerator |
---|
wnop_equal |
|
wnop_binary |
|
wnop_greaterthan |
|
wnop_lessthan |
|
wnop_is |
|
wnop_in |
|
wnop_matches |
|
Definition at line 96 of file EST_Wagon.h.
Enumerator |
---|
wnim_unset |
|
wnim_float |
|
wnim_class |
|
wnim_cluster |
|
wnim_vector |
|
wnim_matrix |
|
wnim_ols |
|
wnim_trajectory |
|
Definition at line 139 of file EST_Wagon.h.
void wgn_load_datadescription |
( |
EST_String |
fname, |
|
|
LISP |
ignores |
|
) |
| |
WNode* wgn_build_tree |
( |
float & |
score | ) |
|
WNode* wgn_build_dlist |
( |
float & |
score, |
|
|
ostream * |
output |
|
) |
| |
WNode* wagon_stepwise |
( |
float |
limit | ) |
|
float summary_results |
( |
WNode & |
tree, |
|
|
ostream * |
output |
|
) |
| |
int wagon_ask_question |
( |
LISP |
question, |
|
|
LISP |
value |
|
) |
| |
float wgn_float_range_split |