-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdtc_openmp.cpp
More file actions
469 lines (434 loc) · 11.2 KB
/
Copy pathdtc_openmp.cpp
File metadata and controls
469 lines (434 loc) · 11.2 KB
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
#include <vector>
#include <map>
#include <queue>
#include <fstream>
#include <sstream>
#include <string>
#include <iostream>
#include <cmath>
#include <cstdlib>
#include <set>
#include <climits>
#include <omp.h>
// filename of training data and testing data
#define trainingData "car-data.int.txt"
#define testingData "car-test.int.txt"
using namespace std;
// 2d vector to store training data
vector <vector <int> > fileContent;
// 2d vector to store testing data
vector <vector <int> > testFileContent;
int numOfAttrib, numOfDataEle;
// node structure of the decision tree
// attribute: splitting attribute (= -1 if leaf node)
// val: class value at leaf node (= -1 if decision node)
// branchVal: make branch decision based on this value
struct Node{
int numOfChildren;
int val;
int branchVal;
int attribute;
struct Node *child[10];
};
typedef struct Node node;
// initialising tree node
node* create(){
node* n = new node;
n->numOfChildren = 0;
n->attribute = -1;
n->val = -1;
n->branchVal = -1;
return n;
}
// function to read data and store in fileContent & testFileContent vectors(2d)
void readCSV(string str)
{
// input file stream (ifs) for reading data from file
if(str.compare("training")==0){
ifstream ifs(trainingData);
string line;
// read from ifs into string 'line'
while(getline(ifs,line)){
stringstream lineStream(line);
string cell;
vector <int> values;
// collecting row data from file delimited by ','
while(getline(lineStream,cell,',')){
const char *cstr = cell.c_str();
values.push_back(atoi(cstr));
}
fileContent.push_back(values);
}
ifs.close();
}
else if(str.compare("testing")==0){
ifstream ifs(testingData);
string line;
// read from ifs into string 'line'
while(getline(ifs,line)){
stringstream lineStream(line);
string cell;
vector <int> values;
// collecting row data from file delimited by ','
while(getline(lineStream,cell,',')){
const char *cstr = cell.c_str();
values.push_back(atoi(cstr));
}
testFileContent.push_back(values);
}
ifs.close();
}
}
// function to calculate entropy
double entropy(vector <double> counts)
{
double total,entropy;
int i;
total=0;
for(i=0;i<counts.size();i++){
if(counts[i]==0){
return 0;
}
total+=counts[i];
}
entropy=0;
// Entropy E = (a/(a+b+...))*(log(a/(a+b+...))/log(2)) + (b/(a+b+...))*(log(b/(a+b+...))/log(2)) + ...
for(i=0;i<counts.size();i++){
entropy += (counts[i]/total)*(log(counts[i]/total)/log(2));
}
return -1 * entropy;
}
// function to get information gain of training data
double getInfoGainOfData(vector <int> data)
{
int i,classVal;
// classCount: keeps a count of the number of data points belonging to a particular class
map<int, int> classCount;
map<int, int>::iterator it;
// counts: store all the counts of all the classes, used for calculating entropy
vector<double> counts;
#pragma omp parallel for
for(i=0;i<data.size();i++){
classVal = fileContent[data[i]][numOfAttrib-1];
#pragma omp critical
{
if(classCount.find(classVal) == classCount.end()){
classCount.insert(make_pair(classVal,1));
}
else{
classCount[classVal]++;
}
}
}
for(it=classCount.begin();it!=classCount.end();it++){
counts.push_back((double)it->second);
}
return entropy(counts);
}
// function to calculate information gain
// attr: attribute for which gin must be calculated
// data: data row nos(in the file and index in "fileContent" vector) used for calculating information gains
double infoGain(int attr,vector <int> data)
{
int i,branchVal,dataSize,subDataValue;
double attrInfoGain;
// branchCount: count of each attribute value
map<int, int> branchCount;
map<int, int>::iterator branchCountIT;
// dataElements[i]: vector containing all data elements having attribute value "i"
map<int, vector<int> > dataElements;
#pragma omp parallel for
for(i=0;i<data.size();i++){
branchVal = fileContent[data[i]][attr];
#pragma omp critical
{
if(branchCount.find(branchVal) == branchCount.end()){
branchCount.insert(make_pair(branchVal,1));
vector <int> x;
x.push_back(data[i]);
dataElements.insert(make_pair(branchVal,x));
}
else{
branchCount[branchVal]++;
dataElements[branchVal].push_back(data[i]);
}
}
}
attrInfoGain=0;
dataSize=data.size();
for(branchCountIT = branchCount.begin();branchCountIT!=branchCount.end();branchCountIT++){
vector <int> subData = dataElements[branchCountIT->first];
// subDataCounts: contains count of data elements belonging to the different output classes
map <int, int> subDataCounts;
map <int, int>::iterator subDataCountsIT;
#pragma omp parallel for
for(i=0;i<subData.size();i++){
subDataValue = fileContent[subData[i]][numOfAttrib-1];
#pragma omp critical
{
if(subDataCounts.find(subDataValue) == subDataCounts.end()){
subDataCounts.insert(make_pair(subDataValue,1));
}
else{
subDataCounts[subDataValue]++;
}
}
}
// subDataCountsArr: contains all counts of each output class value
vector <double> subDataCountsArr;
for(subDataCountsIT=subDataCounts.begin();subDataCountsIT!=subDataCounts.end();subDataCountsIT++){
subDataCountsArr.push_back((double)subDataCountsIT->second);
}
attrInfoGain+= ((double)branchCountIT->second/(double)dataSize)*entropy(subDataCountsArr);
}
return getInfoGainOfData(data) - attrInfoGain;
}
// function to determine the splitting attribute
// attr: candidate attributes for splitting attribute, attr[i]=1 if already used
// data: data row nos(in the file and index in "fileContent" vector) used for calculating information gains
int select(vector <int> &attr,vector <int> data)
{
int i,splitAttr;
double iGain,maxIGain;
maxIGain = INT_MIN;
// //to be deleted
// printf("infoGain of data: %f\n",getInfoGainOfData(data));
// printf("attribute gains:\n");
// //to be deleted
for(i=1;i<attr.size()-1;i++){
if(attr[i]==0){
iGain = infoGain(i,data);
// //to be deleted
// printf("%d %f\n",i,iGain);
// //to be deleted
if(iGain>maxIGain){
// store maximum information gain value along with attribute
maxIGain = iGain;
splitAttr = i;
}
}
}
// //to be deleted
// printf("\n");
// //to be deleted
if(maxIGain==INT_MIN){
return -1;
}
// mark splitAttr as used
attr[splitAttr]=1;
return splitAttr;
}
// function for returning most probable output class
int popularVote(vector<int> data)
{
int i,outputClass,ans,maxVal;
// dataCount: keeps count of each output class in data vector
map <int, int> dataCount;
map <int, int>::iterator it;
#pragma omp parallel for
for(i=0;i<data.size();i++){
outputClass = fileContent[data[i]][numOfAttrib-1];
#pragma omp critical
{
if(dataCount.find(outputClass) == dataCount.end()){
dataCount.insert(make_pair(outputClass,1));
}
else{
dataCount[outputClass]++;
}
}
}
maxVal = INT_MIN;
// ans contains popularVote
for(it=dataCount.begin();it!=dataCount.end();it++){
if(it->second > maxVal){
ans=it->first;
}
}
return ans;
}
// builder function for generating decision tree
// attr: candidate attributes for splitting attribute, attr[i]=1 if already used
// data: data row nos(in the file and index in "fileContent" vector) used for calculating information gains
void decision(vector<int> attr,vector<int> data,node *root)
{
// //to be deleted
// printf("Thread:%d\n", omp_get_thread_num());
// printf("Data Points:\n");
// for(int i=0;i<data.size();i++){
// printf("%d ",data[i]);
// }
// printf("\n");
// //to be deleted
int flag,selectedAttribute,i;
if(data.size()==0){
return;
}
flag=1;
#pragma omp parallel for shared(flag) private(i)
for(i=1;i<data.size();i++){
if(fileContent[data[i]][numOfAttrib-1]!=fileContent[data[i-1]][numOfAttrib-1]){
flag=0;
}
}
// flag = 1 if all the data belong to the same class
if(flag==1){
// assign class value to node and return
root->val=fileContent[data[0]][numOfAttrib-1];
return;
}
// selectedAttribute : splitting attribute
selectedAttribute=select(attr,data);
root->attribute = selectedAttribute;
if(selectedAttribute == -1){
// running out of attributes
root->val = popularVote(data);
return;
}
// dividedData: divide data and store based on attribute values
map<int, vector <int> > dividedData;
map<int, vector <int> >::iterator it;
int attrVal;
#pragma omp parallel for
for(i=0;i<data.size();i++){
attrVal = fileContent[data[i]][selectedAttribute];
#pragma omp critical
{
if(dividedData.find(attrVal) == dividedData.end()){
vector <int> x;
x.push_back(data[i]);
dividedData.insert(make_pair(attrVal,x));
}
else{
dividedData[attrVal].push_back(data[i]);
}
}
}
for(i=0,it=dividedData.begin();it!=dividedData.end();it++,i++){
// create childNode and recurse on it
root->numOfChildren++;
node* childNode;
childNode = create();
childNode->branchVal = it->first;
root->child[i] = childNode;
#pragma omp task
decision(attr, it->second, childNode);
}
#pragma omp taskwait
}
// function for printing and debugging decision tree : bfs traversal
void printDecisionTree(node *root)
{
printf("Printing decision tree:\n");
queue <node> bfsQ;
int x,j;
node* nextNode;
bfsQ.push(*root);
cout << root->attribute << endl;
// implementing bfs traversal of tree
while(bfsQ.size()!=0){
nextNode = &(bfsQ.front());
bfsQ.pop();
x = nextNode->numOfChildren;
j=0;
while(j<x){
bfsQ.push(*(nextNode->child[j]));
cout << nextNode->child[j]->attribute << " ";
j++;
}
cout << endl;
}
return;
}
// function for testing decision tree
void test(node* root)
{
int i,pos,neg,noResult,attr,attrVal,j,flag;
node* temp;
pos=0;
neg=0;
noResult=0;
readCSV("testing");
for(i=0;i<testFileContent.size();i++){
temp=root;
flag=0;
//traverse decision tree
while(temp->val==-1 && temp->attribute!=-1){
attr = temp->attribute;
attrVal=testFileContent[i][attr];
for(j=0;j<temp->numOfChildren;j++){
if(temp->child[j]->branchVal == attrVal){
break;
}
}
if(j==temp->numOfChildren){
flag=1;
break;
}
else{
temp=temp->child[j];
}
}
if(temp->val == testFileContent[i][numOfAttrib-1]){
// predicted value = actual value
pos++;
}
else{
// predicted value != actual value
neg++;
}
if(temp->val == -1 || flag==1){
// no predicted value
noResult++;
}
}
cout << "Positive: " << pos << endl;
cout << "Negative: " << neg << endl;
cout << "No Result: " << noResult << endl;
return;
}
int main()
{
int i;
node* root;
// vector to store row number for data in file
vector <int> data;
// vector to check if attribute has already been used or not
vector <int> attr;
readCSV("training");
numOfAttrib = fileContent[0].size();
numOfDataEle = fileContent.size();
#pragma omp parallel shared(numOfDataEle,numOfAttrib,data,attr) private(i) num_threads(2)
{
#pragma omp single
{
for(i=0;i<numOfDataEle;i++){
data.push_back(i);
}
}
#pragma omp single
{
for(i=0;i<numOfAttrib;i++){
attr.push_back(0);
}
}
}
// create decision tree
root = create();
double start = omp_get_wtime();
#pragma omp parallel num_threads(8)
{
#pragma omp single
{
#pragma omp task
decision(attr,data,root);
}
}
double end = omp_get_wtime();
//print decision tree
//printDecisionTree(root);
// test decision tree
test(root);
printf("Time taken:%f\n", end-start);
return 0;
}