Home | Develop | Download | Contact
example_decisiontree_simple2.cpp
1 
59 #include <iostream>
60 #include <Pds/Ra>
61 #include <Pds/Ml>
62 
63 int main(void)
64 {
66  Pds::Vector Yp;
67 
68  Pds::IterationConf Conf;
69  Conf.Show=true; Conf.SetMinError(1e-07); Conf.SetAlpha(0.1);
70 
72  // Load training data
73  unsigned int L=1000;
74  Pds::Matrix X;
75  Pds::Vector Y;
77 
78  Pds::Octave::XLabel="x_1";
79  Pds::Octave::YLabel="x_2";
80  Pds::Octave::Plot::PointsX2DY(X,Y,"testando.m","example_decisiontree_simple2_data.png");
81 
82  // Creando un arbol
84  Pds::DecisionTree Arbol(Conf,X,Y,0.8,4);
85  std::cout<<"Pds::DecisionTree::Counter: "<<Pds::DecisionTree::Counter<<std::endl;
86 
87  Arbol.ExportFile("arbol.txt");
88 
89  // Exportando arbol en archivo en formato dot.
90  Arbol.ExportDotFile("arbol.dot");
91  system("dot -Tpng -o example_decisiontree_simple2_arbol.png arbol.dot");
92 
93  // Evaluate training data
94  Yp=Arbol.Evaluate(X);
95 
96  // Metrics of training
97  Metrics = Pds::ClassificationMetrics::Calculate(0.5,Yp,Y);
98  Metrics.Print("\n");
99 
100  Pds::Octave::Plot::PointsX2DY(X,Yp,"testando.m","example_decisiontree_simple2_training.png");
101 
103  // Load testing data
105 
106  // Evaluate testing data
107  Yp=Arbol.Evaluate(X);
108 
109  // Metrics of testing
110  Metrics = Pds::ClassificationMetrics::Calculate(Metrics.Threshold,Yp,Y);
111  Metrics.Print("\n");
112 
113  Pds::Octave::Plot::PointsX2DY(X,Yp,"testando.m","example_decisiontree_simple2_testing.png");
114 
115  return 0;
116 }
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 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