-
Notifications
You must be signed in to change notification settings - Fork 26
/
Catal2015.py
158 lines (126 loc) · 5.13 KB
/
Catal2015.py
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
import numpy as np
from sklearn.ensemble import RandomForestClassifier, VotingClassifier
from sklearn.metrics.classification import accuracy_score, recall_score, f1_score
import scipy.stats as st
import sys
def A(sample):
feat = []
for col in range(0,sample.shape[1]):
average = np.average(sample[:,col])
feat.append(average)
return feat
def SD(sample):
feat = []
for col in range(0, sample.shape[1]):
std = np.std(sample[:, col])
feat.append(std)
return feat
def AAD(sample):
feat = []
for col in range(0, sample.shape[1]):
data = sample[:, col]
add = np.mean(np.absolute(data - np.mean(data)))
feat.append(add)
return feat
def ARA(sample):
#Average Resultant Acceleration[1]:
# Average of the square roots of the sum of the values of each axis squared √(xi^2 + yi^2+ zi^2) over the ED
feat = []
sum_square = 0
sample = np.power(sample, 2)
for col in range(0, sample.shape[1]):
sum_square = sum_square + sample[:, col]
sample = np.sqrt(sum_square)
average = np.average(sample)
feat.append(average)
return feat
def TBP(sample):
from scipy import signal
feat = []
sum_of_time = 0
for col in range(0, sample.shape[1]):
data = sample[:, col]
peaks = signal.find_peaks_cwt(data, np.arange(1,4))
feat.append(peaks)
return feat
def feature_extraction(X):
#Extracts the features, as mentioned by Catal et al. 2015
# Average - A,
# Standard Deviation - SD,
# Average Absolute Difference - AAD,
# Average Resultant Acceleration - ARA(1),
# Time Between Peaks - TBP
X_tmp = []
for sample in X:
features = A(sample)
features = np.hstack((features, A(sample)))
features = np.hstack((features, SD(sample)))
features = np.hstack((features, AAD(sample)))
features = np.hstack((features, ARA(sample)))
#features = np.hstack((features, TBP(sample)))
X_tmp.append(features)
X = np.array(X_tmp)
return X
def train_j48(X, y):
from sklearn import tree
clf = tree.DecisionTreeClassifier()
#clf = clf.fit(X, y)
return clf
def train_mlp(X, y):
from sklearn.neural_network import MLPClassifier
a = int((X.shape[1] + np.amax(y)) / 2 )#Default param of weka, amax(y) gets the number of classes
clf = MLPClassifier(solver='lbfgs', alpha=1e-5, hidden_layer_sizes = (a,),
learning_rate_init=0.3, momentum=0.2, max_iter=500, #Default param of weka
)
#clf.fit(X, y)
return clf
def train_logistic_regression(X, y):
from sklearn.linear_model import LogisticRegression
clf = LogisticRegression(multi_class='ovr')
#clf.fit(X, y)
return clf
if __name__ == '__main__':
#Paper: On the use of ensemble of classifiers for accelerometer-based activity recognition
np.random.seed(12227)
if (len(sys.argv) > 1):
data_input_file = sys.argv[1]
else:
data_input_file = 'data/LOSO/MHEALTH.npz'
tmp = np.load(data_input_file)
X = tmp['X']
X = X[:, 0, :, :]
y = tmp['y']
folds = tmp['folds']
n_class = y.shape[1]
avg_acc = []
avg_recall = []
avg_f1 = []
y = np.argmax(y, axis=1)
print('Catal et al. 2015 {}'.format(data_input_file))
for i in range(0, len(folds)):
train_idx = folds[i][0]
test_idx = folds[i][1]
X_train = X[train_idx]
X_test = X[test_idx]
X_train = feature_extraction(X_train)
X_test = feature_extraction(X_test)
j_48 = train_j48(X_train,y[train_idx])
mlp = train_mlp(X_train, y[train_idx])
logistic_regression = train_logistic_regression(X_train, y[train_idx])
majority_voting = VotingClassifier(estimators=[('dt', j_48), ('mlp', mlp), ('lr', logistic_regression)], voting='soft')
majority_voting.fit(X_train, y[train_idx])
tmp = majority_voting.predict(X_test)
acc_fold = accuracy_score(y[test_idx], tmp)
avg_acc.append(acc_fold)
recall_fold = recall_score(y[test_idx], tmp, average='macro')
avg_recall.append(recall_fold)
f1_fold = f1_score(y[test_idx], tmp, average='macro')
avg_f1.append(f1_fold)
print('Accuracy[{:.4f}] Recall[{:.4f}] F1[{:.4f}] at fold[{}]'.format(acc_fold, recall_fold, f1_fold ,i))
print('______________________________________________________')
ic_acc = st.t.interval(0.9, len(avg_acc) - 1, loc=np.mean(avg_acc), scale=st.sem(avg_acc))
ic_recall = st.t.interval(0.9, len(avg_recall) - 1, loc=np.mean(avg_recall), scale=st.sem(avg_recall))
ic_f1 = st.t.interval(0.9, len(avg_f1) - 1, loc=np.mean(avg_f1), scale=st.sem(avg_f1))
print('Mean Accuracy[{:.4f}] IC [{:.4f}, {:.4f}]'.format(np.mean(avg_acc), ic_acc[0], ic_acc[1]))
print('Mean Recall[{:.4f}] IC [{:.4f}, {:.4f}]'.format(np.mean(avg_recall), ic_recall[0], ic_recall[1]))
print('Mean F1[{:.4f}] IC [{:.4f}, {:.4f}]'.format(np.mean(avg_f1), ic_f1[0], ic_f1[1]))