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 
48 #include <Pds/Ra>
49 #include <Pds/IterationConf>
50 #include <Pds/Perceptron>
51 
52 #include <sstream> // std::ostringstream
53 
54 namespace Pds{
55 
64 {
65 private:
68 
71 
74 
75 public:
76 
77  static unsigned int Counter;
78 
87  DecisionTree(void);
88 
93  DecisionTree(const std::string &filename);
94 
112  const Pds::Matrix &X,
113  const Pds::Vector &Y,
114  double StopBinaryIG=0.95,
115  unsigned int StopSamples=2);
116 
132  DecisionTree( const Pds::Matrix &X,
133  const Pds::Vector &Y,
134  double StopBinaryIG=0.95,
135  unsigned int StopSamples=2);
136 
138 
139 
145 public:
146 
157  double Evaluate(const Pds::Vector &x) const;
158 
164  Pds::Vector Evaluate(const Pds::Matrix &X) const;
165 
170 public:
171 
182  void ExportInStreamFile(std::ofstream &streamfile,const std::string &str) const;
183 
189  bool ExportFile(const std::string &filename) const;
190 
195  void ExportDotInStreamFile(std::ofstream &streamfile) const;
196 
202  bool ExportDotFile(const std::string &filename) const;
203 
209  void ImportFromStreamFile(std::ifstream &ifs,const std::string &str);
210 
216  bool ImportFile(const std::string &filename);
221 public:
222 
233  void MakeEmpty(void);
234 
239 public:
240 
250  Pds::Vector RootW(void) const;
251 
252 
258  void Print(const std::string &str) const;
259 
264 }; // Class DecisionTree
265 
266 } // namespace Pds
267 
268 
288 std::ostream& operator<<(std::ostream &out,const Pds::DecisionTree &A);
289 
298 #endif
299 
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:63
DecisionTree(const Pds::Matrix &X, const Pds::Vector &Y, double StopBinaryIG=0.95, unsigned int StopSamples=2)
Crea un objeto de tipo Pds::DecisionTree calculando los pesos conociendo los vectores de entrada X y ...
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...
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.
Pds::Vector RootW(void) const
Retorna el vector de pesos.
void ImportFromStreamFile(std::ifstream &ifs, const std::string &str)
Carga desde un archivo .txt el objeto de tipo Pds::DecisionTree.
std::ostream & operator<<(std::ostream &out, const Pds::DecisionTree &A)
Retorna el contenido del perceptron por la salida estándar.
void MakeEmpty(void)
Convierte el perceptron a vazio, es decir con el vector de pessos sin elementos y funcion de activaci...
DecisionTree(Pds::IterationConf Conf, const Pds::Matrix &X, const Pds::Vector &Y, double StopBinaryIG=0.95, unsigned int StopSamples=2)
Crea un objeto de tipo Pds::DecisionTree calculando los pesos conociendo los vectores de entrada X y ...
void ExportInStreamFile(std::ofstream &streamfile, const std::string &str) const
Salva en formato txt el objeto de tipo 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.
bool ExportDotFile(const std::string &filename) const
Salva en formato .dot el objeto de tipo Pds::DecisionTree.
double Evaluate(const Pds::Vector &x) const
Evalua el objeto de tipo Pds::DecisionTree.
Pds::Vector Evaluate(const Pds::Matrix &X) const
Evalua el objeto de tipo Pds::DecisionTree.
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