Home | Develop | Download | Contact
example_decisiontree_create2.cpp

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

g++ -static -o example_decisiontree_create2 example_decisiontree_create2.cpp -lpdsmlmm -lpdsramm -lpdsspmm

Para executar o programa:

./example_decisiontree_create2

Retornando por consola:

Pds::DecisionTree::Counter: 16
Classification - data


Classification - conf


Classification - conf copy

Código example_decisiontree_create2.cpp:

#include <iostream>
#include <Pds/Ra>
#include <Pds/Ml>
int main(void)
{
Pds::Octave::XLabel="x_1";
Pds::Octave::YLabel="x_2";
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_create2_data.png");
// Creando un arbol
Pds::DecisionTree Arbol1("k2means",Conf,X,Y,0.8,3,0);
std::cout<<"Pds::DecisionTree::Counter: "<<Pds::DecisionTree::Counter<<std::endl;
Arbol1.ExportDotFile("Arbol1.dot");
// Predict arbol with training data
Yp=Arbol1.Predict(X);
Pds::Octave::Plot::PointsX2DY(X,Yp,"testando.m","example_decisiontree_create2_conf.png");
// Creando un arbol
Pds::DecisionTree Arbol2(Arbol1);
Arbol1.MakeEmpty();
Arbol2.ExportDotFile("Arbol2.dot");
// Predict arbol with training data
Yp=Arbol2.Predict(X);
Pds::Octave::Plot::PointsX2DY(X,Yp,"testando.m","example_decisiontree_create2_copy.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 Predict(const Pds::Vector &x) const
Evalua el objeto de tipo Pds::DecisionTree.
void MakeEmpty(void)
Convierte el DecisionTree a vazio, es decir sin elementos y con valores nulos.
bool ExportDotFile(const std::string &filename) const
Salva en formato .dot 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.

Enlaces de interés

HomePage Bazaar Download Bug report Ayuda Developer Feed