Home | Develop | Download | Contact
example_decisiontree_create.cpp
1 
26 #include <iostream>
27 #include <Pds/Ra>
28 #include <Pds/Ml>
29 
30 int main(void)
31 {
32  Pds::Vector Yp;
33  Pds::IterationConf Conf;
34  Conf.Show=false; Conf.SetMinError(1e-07); Conf.SetAlpha(0.1);
35 
36  // Load training data
37  unsigned int L=1000;
38  Pds::Matrix X;
39  Pds::Vector Y;
41 
42  Pds::Octave::XLabel="x_1";
43  Pds::Octave::YLabel="x_2";
44  Pds::Octave::Plot::PointsX2DY(X,Y,"testando.m","example_decisiontree_create_data.png");
45 
46  // Creando un arbol
48  Pds::DecisionTree Arbol1(Conf,X,Y,0.8,3);
49  std::cout<<"Pds::DecisionTree::Counter: "<<Pds::DecisionTree::Counter<<std::endl;
50 
51  // Evaluate import arbol with training data
52  Yp=Arbol1.Evaluate(X);
53 
54  Pds::Octave::Plot::PointsX2DY(X,Yp,"testando.m","example_decisiontree_create_conf.png");
55 
56  // Creando un arbol
58  Pds::DecisionTree Arbol2(X,Y,0.8,3);
59  std::cout<<"Pds::DecisionTree::Counter: "<<Pds::DecisionTree::Counter<<std::endl;
60 
61  // Evaluate import arbol with training data
62  Yp=Arbol2.Evaluate(X);
63 
64  Pds::Octave::Plot::PointsX2DY(X,Yp,"testando.m","example_decisiontree_create_ortogonal.png");
65 
66  return 0;
67 }
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....
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