Home | Develop | Download | Contact
example_decisiontree_simple2.cpp

Programa para el testeo de las funciones.Para compilar o código example_decisiontree_simple2.cpp:

g++ -static -o example_decisiontree_simple2 example_decisiontree_simple2.cpp -lpdsmlmm

Para executar o programa:

./example_decisiontree_simple2

Retornando por consola:

...

Pds::DecisionTree::Counter: 83

-----------------------------
 ClassificationMetrics data  
-----------------------------
Threshold       : 0.5
Samples         : 2000
----------------:------------
Pred.[0]/Act.[*]: 991   5
Pred.[1]/Act.[*]: 9     995
----------------:------------
Accuracy        : 99.3%
Precision       : 99.1%
Recall          : 99.5%
----------------:------------
FScore          : 99.3%
-----------------------------

-----------------------------
 ClassificationMetrics data  
-----------------------------
Threshold       : 0.5
Samples         : 2000
----------------:------------
Pred.[0]/Act.[*]: 978   23
Pred.[1]/Act.[*]: 22    977
----------------:------------
Accuracy        : 97.75%
Precision       : 97.8%
Recall          : 97.7%
----------------:------------
FScore          : 97.75%
-----------------------------
Clasification - data


Clasification - training


Clasification - testing

Código example_decisiontree_simple2.cpp:

#include <iostream>
#include <Pds/Ra>
#include <Pds/Ml>
int main(void)
{
Pds::Vector Yp;
Conf.Show=true; Conf.SetMinError(1e-07); Conf.SetAlpha(0.1);
// Load training data
unsigned int L=1000;
Pds::Matrix X;
Pds::Vector Y;
Pds::Octave::Plot::PointsX2DY(X,Y,"testando.m","example_decisiontree_simple2_data.png");
// Creando un arbol
Pds::DecisionTree Arbol(Conf,X,Y,0.8,4);
std::cout<<"Pds::DecisionTree::Counter: "<<Pds::DecisionTree::Counter<<std::endl;
Arbol.ExportFile("arbol.txt");
// Exportando arbol en archivo en formato dot.
Arbol.ExportDotFile("arbol.dot");
system("dot -Tpng -o example_decisiontree_simple2_arbol.png arbol.dot");
// Evaluate training data
Yp=Arbol.Evaluate(X);
// Metrics of training
Metrics.Print("\n");
Pds::Octave::Plot::PointsX2DY(X,Yp,"testando.m","example_decisiontree_simple2_training.png");
// Load testing data
// Evaluate testing data
Yp=Arbol.Evaluate(X);
// Metrics of testing
Metrics.Print("\n");
Pds::Octave::Plot::PointsX2DY(X,Yp,"testando.m","example_decisiontree_simple2_testing.png");
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 ExportFile(const std::string &filename) const
Salva en formato .txt el objeto de tipo Pds::DecisionTree.
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 LoadDataBand2(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.
bool PointsX2DY(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, clasificadas de forma binaria con Y>=0.5,...

Enlaces de interés

HomePage Bazaar Download Bug report Ayuda Developer Feed