File: forest.h

package info (click to toggle)
mothur 1.33.3%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 11,248 kB
  • ctags: 12,231
  • sloc: cpp: 152,046; fortran: 665; makefile: 74; sh: 34
file content (83 lines) | stat: -rw-r--r-- 2,903 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
//
//  forest.h
//  Mothur
//
//  Created by Kathryn Iverson on 10/26/12. Modified abstractrandomforest
//  Copyright (c) 2012 Schloss Lab. All rights reserved.
//

#ifndef __Mothur__forest__
#define __Mothur__forest__

#include <iostream>
#include "mothurout.h"
#include "macros.h"
#include "decisiontree.hpp"
#include "abstractdecisiontree.hpp"
/***********************************************************************/
//this is a re-implementation of the abstractrandomforest class

class Forest{
public:
    // intialization with vectors
    Forest(const std::vector < std::vector<int> > dataSet,
           const int numDecisionTrees,
           const string treeSplitCriterion,
           const bool doPruning,
           const float pruneAggressiveness,
           const bool discardHighErrorTrees,
           const float highErrorTreeDiscardThreshold,
           const string optimumFeatureSubsetSelectionCriteria,
           const float featureStandardDeviationThreshold);
    virtual ~Forest(){ }
    virtual int populateDecisionTrees() = 0;
    virtual int calcForrestErrorRate() = 0;
    virtual int calcForrestVariableImportance(string) = 0;
    virtual int updateGlobalOutOfBagEstimates(DecisionTree* decisionTree) = 0;
    
    /***********************************************************************/
    
protected:
    
    // TODO: create a better way of discarding feature
    // currently we just set FEATURE_DISCARD_SD_THRESHOLD to 0 to solved this
    // it can be tuned for better selection
    // also, there might be other factors like Mean or other stuffs
    // same would apply for createLocalDiscardedFeatureList in the TreeNode class
    
    // TODO: Another idea is getting an aggregated discarded feature indices after the run, from combining
    // the local discarded feature indices
    // this would penalize a feature, even if in global space the feature looks quite good
    // the penalization would be averaged, so this woould unlikely to create a local optmina
    
    vector<int> getGlobalDiscardedFeatureIndices();
    
    int numDecisionTrees;
    int numSamples;
    int numFeatures;
    vector< vector<int> > dataSet;
    vector<int> globalDiscardedFeatureIndices;
    vector<double> globalVariableImportanceList;
    string treeSplitCriterion;
  
    bool doPruning;
    float pruneAggressiveness;
    bool discardHighErrorTrees;
    float highErrorTreeDiscardThreshold;
    string optimumFeatureSubsetSelectionCriteria;
    float featureStandardDeviationThreshold;
  
    // This is a map of each feature to outcome count of each classes
    // e.g. 1 => [2 7] means feature 1 has 2 outcome of 0 and 7 outcome of 1
    map<int, vector<int> > globalOutOfBagEstimates;
    
    // TODO: fix this, do we use pointers?
    vector<AbstractDecisionTree*> decisionTrees;
    
    MothurOut* m;
    
private:
    
};

#endif /* defined(__Mothur__forest__) */