blob: 2bfa02855360ac2083b2f449a99b39d557b6129b (
plain)
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
|
#pragma once
// #include <cstdarg>
namespace Eloquent {
namespace ML {
namespace Port {
class DecisionTree {
public:
/**
* Predict class for features vector
*/
int predict(float *x) {
if (x[2] <= 95.5) {
if (x[2] <= 94.0) {
return 1;
}
else {
if (x[0] <= 96.5) {
return 1;
}
else {
if (x[0] <= 99.0) {
return 0;
}
else {
return 1;
}
}
}
}
else {
if (x[1] <= 37.25) {
if (x[0] <= 61.0) {
return 1;
}
else {
return 0;
}
}
else {
return 1;
}
}
}
protected:
};
}
}
}
|