Home | Develop | Download | Contact
DecisionTree.hpp
1 /*
2  * DecisionTree.hpp
3  *
4  * Copyright 2018 Fernando Pujaico Rivera <fernando.pujaico.rivera@gmail.com>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19  * MA 02110-1301, USA.
20  *
21  */
22 
32 #ifndef __PDS_DECISIONTREE_HPP__
33 #define __PDS_DECISIONTREE_HPP__
34 
35 
49 #include <Pds/Ra>
50 #include <Pds/IterationConf>
51 #include <Pds/Perceptron>
52 
53 #include <sstream> // std::ostringstream
54 
55 namespace Pds{
56 
65 {
66 private:
69 
72 
75 
76 public:
77 
78  static unsigned int Counter;
79 
88  DecisionTree(void);
89 
94  DecisionTree(const std::string &filename);
95 
100 
135  DecisionTree( std::string Type,
136  Pds::IterationConf Conf,
137  const Pds::Matrix &X,
138  const Pds::Vector &Y,
139  double StopBinaryIG=0.95,
140  unsigned int StopSamples=4,
141  unsigned int StopDeep=0,
142  double Delta=0.001);
143 
144 
161  DecisionTree( const Pds::Matrix &X,
162  const Pds::Vector &Y,
163  double StopBinaryIG=0.95,
164  unsigned int StopSamples=4,
165  unsigned int StopDeep=0);
166 
167 
168 
169 
171 
172 
178 public:
179 
190  double Predict(const Pds::Vector &x) const;
191 
197  Pds::Vector Predict(const Pds::Matrix &X) const;
198 
203 public:
204 
215  void ExportInStreamFile(std::ofstream &streamfile,const std::string &str) const;
216 
222  bool ExportFile(const std::string &filename) const;
223 
228  void ExportDotInStreamFile(std::ofstream &streamfile) const;
229 
235  bool ExportDotFile(const std::string &filename) const;
236 
242  void ImportFromStreamFile(std::ifstream &ifs,const std::string &str);
243 
249  bool ImportFile(const std::string &filename);
254 public:
255 
268  bool IsEmpty(void) const;
269 
275  bool IsNotEmpty(void) const;
276 
282  void MakeEmpty(void);
283 
288 public:
289 
317 
330  bool Copy(const Pds::DecisionTree &B);
331 
332 
336 public:
337 
347  const Pds::Vector &RootW(void) const;
348 
353  unsigned int GetWN(void) const;
354 
360  void Print(const std::string &str) const;
361 
362 
367  const Pds::DecisionTree* GetChild0(void) const
368  {
369  return this->LeftTree;
370  }
371 
372 
377  const Pds::DecisionTree* GetChild1(void) const
378  {
379  return this->RightTree;
380  }
381 
386 }; // Class DecisionTree
387 
388 } // namespace Pds
389 
390 
391 
392 
397 #endif
398 
La clase tipo Pds::DecisionTree . Esta clase genera un arbol de decision para unos datos dados....
Pds::DecisionTree * LeftTree
Pds::Perceptron P
Pds::DecisionTree * RightTree
static unsigned int Counter
La clase tipo Pds::IterationConf . Esta clase genera una matriz de Nlin lineas y 1 columna....
La clase tipo Pds::Perceptron . Esta clase genera una matriz de Nlin lineas y 1 columna....
Definition: Perceptron.hpp:64
bool IsNotEmpty(void) const
Verifica si el DecisionTree no está vazio,.
DecisionTree(const std::string &filename)
Crea el objeto de tipo Pds::DecisionTree desde un archivo. El formato es el usado por el método Expor...
const Pds::DecisionTree * GetChild1(void) const
Retorna la direccion del hijo relativo a 1.
void ExportDotInStreamFile(std::ofstream &streamfile) const
Salva en formato .dot el objeto de tipo Pds::DecisionTree.
DecisionTree(void)
Crea el objeto de tipo Pds::DecisionTree vacio.
void ImportFromStreamFile(std::ifstream &ifs, const std::string &str)
Carga desde un archivo .txt el objeto de tipo Pds::DecisionTree.
bool Copy(const Pds::DecisionTree &B)
Copia en si mismo (A), el contenido de un DecisionTree B. Este método es similar a usar el operador =...
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.
DecisionTree(std::string Type, Pds::IterationConf Conf, const Pds::Matrix &X, const Pds::Vector &Y, double StopBinaryIG=0.95, unsigned int StopSamples=4, unsigned int StopDeep=0, double Delta=0.001)
Crea un objeto de tipo Pds::DecisionTree calculando los pesos conociendo los vectores de entrada X y ...
Pds::Vector Predict(const Pds::Matrix &X) const
Evalua el objeto de tipo Pds::DecisionTree.
void ExportInStreamFile(std::ofstream &streamfile, const std::string &str) const
Salva en formato txt el objeto de tipo Pds::DecisionTree.
DecisionTree(const Pds::DecisionTree &Arbol)
Crea el objeto de tipo Pds::DecisionTree desde otro Pds::DecisionTree.
void Print(const std::string &str) const
Imprime en pantalla el contenido del vector de pesos después del texto indicado en str.
bool ExportFile(const std::string &filename) const
Salva en formato .txt el objeto de tipo Pds::DecisionTree.
Pds::DecisionTree & operator=(const Pds::DecisionTree &B)
Copia en si mismo (A), un DecisionTree B. Este operador es similar al método Copy()....
DecisionTree(const Pds::Matrix &X, const Pds::Vector &Y, double StopBinaryIG=0.95, unsigned int StopSamples=4, unsigned int StopDeep=0)
Crea un objeto de tipo Pds::DecisionTree calculando los pesos conociendo los vectores de entrada X y ...
const Pds::Vector & RootW(void) const
Retorna el vector de pesos.
bool ExportDotFile(const std::string &filename) const
Salva en formato .dot el objeto de tipo Pds::DecisionTree.
const Pds::DecisionTree * GetChild0(void) const
Retorna la direccion del hijo relativo a 0.
unsigned int GetWN(void) const
Retorna el numero de elementos del vector de pesos.
bool IsEmpty(void) const
Verifica si el DecisionTree está vazio, es decir sin elementos y con valores nulos.
bool ImportFile(const std::string &filename)
Carga desde un archivo .txt el objeto de tipo Pds::DecisionTree.
Nombre de espacio para Pds (Procesamiento Digital de Senales)

Enlaces de interés

HomePage Bazaar Download Bug report Ayuda Developer Feed