automatic commit
[folded-ctf.git] / boosted_classifier.h
1
2 ///////////////////////////////////////////////////////////////////////////
3 // This program is free software: you can redistribute it and/or modify  //
4 // it under the terms of the version 3 of the GNU General Public License //
5 // as published by the Free Software Foundation.                         //
6 //                                                                       //
7 // This program is distributed in the hope that it will be useful, but   //
8 // WITHOUT ANY WARRANTY; without even the implied warranty of            //
9 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      //
10 // General Public License for more details.                              //
11 //                                                                       //
12 // You should have received a copy of the GNU General Public License     //
13 // along with this program. If not, see <http://www.gnu.org/licenses/>.  //
14 //                                                                       //
15 // Written by Francois Fleuret                                           //
16 // (C) Idiap Research Institute                                          //
17 //                                                                       //
18 // Contact <francois.fleuret@idiap.ch> for comments & bug reports        //
19 ///////////////////////////////////////////////////////////////////////////
20
21 /*
22
23   This class is an implementation of the Classifier with a boosting of
24   tree. It works with samples from R^n and has no concept of the
25   pi-features.
26
27 */
28
29 #ifndef BOOSTED_CLASSIFIER_H
30 #define BOOSTED_CLASSIFIER_H
31
32 #include "classifier.h"
33 #include "sample_set.h"
34 #include "decision_tree.h"
35 #include "loss_machine.h"
36
37 class BoostedClassifier : public Classifier {
38 public:
39
40   int _loss_type;
41   int _nb_weak_learners;
42   DecisionTree **_weak_learners;
43
44 public:
45
46   BoostedClassifier(int nb_weak_learners);
47   BoostedClassifier();
48   virtual ~BoostedClassifier();
49
50   virtual scalar_t response(SampleSet *sample_set, int n_sample);
51   virtual void train(LossMachine *loss_machine, SampleSet *train, scalar_t *response);
52
53   virtual void tag_used_features(bool *used);
54   virtual void re_index_features(int *new_indexes);
55
56   virtual void read(istream *is);
57   virtual void write(ostream *os);
58 };
59
60 #endif