-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathNode.cpp
118 lines (114 loc) · 3.26 KB
/
Node.cpp
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
#include "Node.h"
#include "CalSim.h"
/* By Tony, Sep 20.
Constructor for non-leave nodes.
*/
Node::Node(feature a, int d) {
this->chosenFeature = a;
this->depth = d;
this->subNodes.clear();
}
/* By Tony, Sep 20.
Constructor for leave nodes.
*/
Node::Node(example averageLabelValue, int d) {
this->label = averageLabelValue;
this->depth = d;
this->subNodes.clear();
}
Node::Node(vector<example> examples, int d) {
this->estimateExamples = examples;
this->depth = d;
this->subNodes.clear();
}
/* By Tony, Sep 20.
Add a new branch to this node, and the split poiont value also needed.
We at most add two branch to the node.
*/
void Node::addNewBranch(Node* s, float sP) {
this->subNodes.push_back(s);
this->splitPoint = sP;
}
/* By Tony, Sep 20.
When given a test example, let the Node make a decision to left or right sub-node.
*/
example Node::makeDecision(example &e) {
// If subNodes.size() == 0, then the node is a leaf.
if (subNodes.size() == 0)
{
example result;
//initial result
for(int i=0;i<labelNum;i++)
{
result.y[i]=0;
}
int example_num=estimateExamples.size();
double *weights=(double*)malloc(example_num* sizeof(double));
double sum=0;
for(int i=0;i<example_num;i++)
{
//CalSim cs;
//weights[i]=cs.cal_sim(e.y, estimateExamples[i].y);
weights[i] = 1;
//weights[i] = -1 * log(weights[i]);
sum+=weights[i];
}
double weight;
//bool flag = 0;
for(int i=0;i<example_num;i++)
{
//if (e.name[e.name.size() - 1] == estimateExamples[i].name[estimateExamples[i].name.size() - 1]) {
// flag = 1;
weight=weights[i]/sum;
for(int j=0;j<labelNum;j++)
{
result.y[j]+=weight*estimateExamples[i].y[j];
}
// }
}
/*
if (!flag) {
for(int i=0;i<example_num;i++)
{
weight=weights[i]/sum;
for(int j=0;j<labelNum;j++)
{
result.y[j]+=weight*estimateExamples[i].y[j];
}
}
}*/
return result;
}
// Otherwise, goes down.
float l = e.x[chosenFeature.index];
//cout << "go though (" << l << "," << splitPoint << " -> ";
printf("go through (%f, %f) - >", l, splitPoint);
if (l <= splitPoint && subNodes.size() > 0) return subNodes[0]->makeDecision(e);
else if (subNodes.size() > 1) return subNodes[1]->makeDecision(e);
}
/* By Tony, Sep 20.
Print out the the value of this node.
For debug only.
*/
void Node::print() {
if (subNodes.empty()) {
cout << "label=";
for (int i = 0; i < this->estimateExamples.size(); i++)
cout << estimateExamples[i].name << ", ";
cout << endl;
} else {
cout << this->chosenFeature.index << endl;
}
}
// By Tony, Sep 20.
bool Node::isLeave() { return subNodes.empty(); }
// By Tony, Sep 20.
vector<Node*> Node::getSubNodes() { return subNodes; }
// By Tony, Sep 20.
float Node::getSplitPoint() { return splitPoint; }
// By Tony, Sep 20.
Node::~Node() {
for (int i = 0; i < subNodes.size(); i++) {
delete subNodes[i];
}
}