Programa para el testeo de las funciones.Para compilar o código example_decisiontree.cpp:
g++ -static -o example_decisiontree example_decisiontree.cpp -lpdsmlmm
Para executar o programa:
Retornando por consola:
Pds::DecisionTree::Counter: 123
Training metrics:
╔═══════════════════════════════════╗
║ ClassificationMetrics data ║
╠═══════════════════════════════════╣
║ Threshold: 0.5 ║
║ Samples: 2000 ║
╠═══════════════════════════════════╣
║ Pred.[0]/Act.[*]: 982 3 ║
║ Pred.[1]/Act.[*]: 18 997 ║
╠═══════════════════════════════════╣
║ Accuracy: 98.95 % ║
║ Precision: 98.23 % ║
║ Recall: 99.7 % ║
╠═══════════════════════════════════╣
║ FScore: 98.96 % ║
╚═══════════════════════════════════╝
Testing metrics:
╔═══════════════════════════════════╗
║ ClassificationMetrics data ║
╠═══════════════════════════════════╣
║ Threshold: 0.5 ║
║ Samples: 2000 ║
╠═══════════════════════════════════╣
║ Pred.[0]/Act.[*]: 955 41 ║
║ Pred.[1]/Act.[*]: 45 959 ║
╠═══════════════════════════════════╣
║ Accuracy: 95.7 % ║
║ Precision: 95.52 % ║
║ Recall: 95.9 % ║
╠═══════════════════════════════════╣
║ FScore: 95.71 % ║
╚═══════════════════════════════════╝
Clasification - data
Clasification - training
Clasification - testing
Código example_decisiontree.cpp:
#include <iostream>
#include <Pds/Ra>
#include <Pds/Ml>
int main(void)
{
Pds::Vector Yp;
unsigned int L=1000;
Pds::Matrix X;
Pds::Vector Y;
Metrics.
Print(
"\nTraining metrics:\n");
Metrics.
Print(
"\nTesting metrics:\n");
return 0;
}
La clase tipo Pds::ClassificationMetrics . Esta clase genera un bloque de datos para analizar curvas ...
La clase tipo Pds::DecisionTree . Esta clase genera un arbol de decision para unos datos dados....
static unsigned int Counter
La clase tipo Pds::IterationConf . Esta clase genera una matriz de Nlin lineas y 1 columna....
static Pds::ClassificationMetrics Calculate(double Threshold, const Pds::Vector &Ypredict, const Pds::Vector &Yactual)
Crea un objeto Dat de tipo Pds::ClassificationMetrics.
void Print(std::string str="")
Imprime en pantalla los datos de la estructura tipo Pds::ClassificationMetrics.
bool ExportDotFile(const std::string &filename) const
Salva en formato .dot el objeto de tipo Pds::DecisionTree.
double Evaluate(const Pds::Vector &x) const
Evalua el objeto de tipo Pds::DecisionTree.
bool SetAlpha(double Alpha)
Coloca el valor alpha.
bool SetMinError(double MinError)
Coloca el valor MinError.
void LoadDataYinYang(unsigned int L, Pds::Matrix &X, Pds::Vector &Y)
Clasificacion de datos separados por mas de una curva.
std::string YLabel
Texto correspondente a ylabel.
std::string XLabel
Texto correspondente a xlabel.
std::string Colormap
Corlormap usado en el código octave.
bool ScatterX2DY(const Pds::Matrix &X, const Pds::Vector &Y, const std::string &octfilename, const std::string &imgfilename)
Plot de muestras en 2D en las columnas X, muestra los valores de Y con una degradación de colores.