Home | Develop | Download | Contact
example_decisiontree_create.cpp

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

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

Para executar o programa:

./example_decisiontree_create

Retornando por consola:

Pds::DecisionTree::Counter: 65
Pds::DecisionTree::Counter: 181
Clasification - data


Clasification - conf


Clasification - ortogonal

Código example_decisiontree_create.cpp:

#include <iostream>
#include <Pds/Ra>
#include <Pds/Ml>
int main(void)
{
Pds::Vector Yp;
Conf.Show=false; 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_create_data.png");
// Creando un arbol
Pds::DecisionTree Arbol1(Conf,X,Y,0.8,3);
std::cout<<"Pds::DecisionTree::Counter: "<<Pds::DecisionTree::Counter<<std::endl;
// Evaluate import arbol with training data
Yp=Arbol1.Evaluate(X);
Pds::Octave::Plot::PointsX2DY(X,Yp,"testando.m","example_decisiontree_create_conf.png");
// Creando un arbol
Pds::DecisionTree Arbol2(X,Y,0.8,3);
std::cout<<"Pds::DecisionTree::Counter: "<<Pds::DecisionTree::Counter<<std::endl;
// Evaluate import arbol with training data
Yp=Arbol2.Evaluate(X);
Pds::Octave::Plot::PointsX2DY(X,Yp,"testando.m","example_decisiontree_create_ortogonal.png");
return 0;
}
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....
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