-
Notifications
You must be signed in to change notification settings - Fork 17
/
preprocessing.py
360 lines (308 loc) · 17.5 KB
/
preprocessing.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
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
import os, glob
import numpy as np
import pandas as pd
import re
import json
from matplotlib import pyplot as plt
from tqdm import tqdm
class Preprocessing():
def __init__(self, data_name, boundary_ratio):
self.data_name = data_name
self.boundary_ratio = boundary_ratio
def long_time_series_normalization(self, X_long):
# X_long = (X_long - np.min(X_long, axis=0)) / (np.max(X_long, axis=0) - np.min(X_long, axis=0))
X_long = (X_long - np.mean(X_long, axis=0)) / np.std(X_long, axis=0)
return X_long
def patchwork_random(self, feature_list, label_list, label_seg_list):
num_file = len(feature_list)
permuted_file_indices = np.random.permutation(np.arange(num_file))
length = 0
X_long = []
y_long = []
y_seg_long = []
file_boundaries = []
for i in permuted_file_indices:
length += len(feature_list[i])
X_long.append(feature_list[i])
y_long.append(label_list[i])
y_seg_long.append(label_seg_list[i])
file_boundaries.append(length)
return np.concatenate(X_long, axis=0), np.concatenate(y_long, axis=0), np.concatenate(y_seg_long, axis=0), np.array(file_boundaries, dtype=np.int64)
def patchwork(self, feature_list, label_list, label_seg_list):
num_file = len(feature_list)
permuted_file_indices = np.arange(num_file)
length = 0
X_long = []
y_long = []
y_seg_long = []
file_boundaries = []
for i in permuted_file_indices:
length += len(feature_list[i])
X_long.append(feature_list[i])
y_long.append(label_list[i])
y_seg_long.append(label_seg_list[i])
file_boundaries.append(length)
return np.concatenate(X_long, axis=0), np.concatenate(y_long, axis=0), np.concatenate(y_seg_long, axis=0), np.array(file_boundaries, dtype=np.int64)
def generate_boundary_labels_ratio(self, label_list, mapping_dict):
boundary_list = []
segment_len_list = []
label_seg_list = []
for video_label in label_list:
for class_label, class_name in mapping_dict.items():
video_label[video_label == class_name] = int(class_label) # change class name into class integer
label_seg_list.append(np.zeros(len(video_label)))
boundaries = []
segment_len = []
length = 0
for ind, (prev_label, curr_label) in enumerate(zip(video_label, video_label[1:])):
length += 1
if prev_label != curr_label:
boundaries.append(ind)
segment_len.append(length)
length = 0
if length != 0:
segment_len.append(length) # put last segment(no boundary at the last of file)
if len(boundaries) != len(segment_len)-1:
segment_len.append(1)
boundary_list.append(boundaries)
segment_len_list.append(segment_len)
ratio = self.boundary_ratio # put 10% of min(rhs/lhs segment) as boundary label.
for i in range(len(boundary_list)):
for j in range(len(boundary_list[i])):
lhs_boundary_length = segment_len_list[i][j] * ratio
rhs_boundary_length = segment_len_list[i][j + 1] * ratio
boundary_length = np.minimum(lhs_boundary_length, rhs_boundary_length)
start_ind = int(boundary_list[i][j] - boundary_length) + 1
end_ind = int(boundary_list[i][j] + boundary_length) + 1
label_seg_list[i][start_ind:end_ind] = 1
return label_seg_list
def generate_boundary_labels(self, label_list, mapping_dict):
boundary_list = []
segment_len_list = []
label_seg_list = []
for video_label in label_list:
for class_label, class_name in mapping_dict.items():
video_label[video_label == class_name] = int(class_label) # change class name into class integer
label_seg_list.append(np.zeros(len(video_label)))
boundaries = []
segment_len = []
length = 0
for ind, (prev_label, curr_label) in enumerate(zip(video_label, video_label[1:])):
length += 1
if prev_label != curr_label:
boundaries.append(ind)
segment_len.append(length)
length = 0
if length != 0:
segment_len.append(length) # put last segment(no boundary at the last of file)
if len(boundaries) != len(segment_len)-1:
segment_len.append(1)
boundary_list.append(boundaries)
segment_len_list.append(segment_len)
for i in range(len(boundary_list)):
for j in range(len(boundary_list[i])):
label_seg_list[i][boundary_list[i][j]] = 1
return label_seg_list
def generate_long_time_series(self):
try:
X_long = np.load(os.path.join("datasets", self.data_name + "_X_long.npy"))
y_long = np.load(os.path.join("datasets", self.data_name + "_y_long.npy"))
y_seg_long = np.load(os.path.join("datasets", self.data_name + "_y_seg_long.npy"))
file_boundaries = np.load(os.path.join("datasets", self.data_name + "_file_boundaries.npy"))
print(f"{self.data_name} loaded from preprocessed files")
print(X_long.shape, y_long.shape, y_seg_long.shape)
return X_long, y_long, y_seg_long, file_boundaries
except:
file_boundaries_indice = []
if self.data_name == "50salads":
data_path = 'datasets/50salads/features'
label_path = 'datasets/50salads/groundTruth'
label_map_file_name = 'datasets/50salads/mapping.txt'
feature_file_names = sorted(glob.glob(os.path.join(data_path, "*.npy")))
label_file_names = sorted(glob.glob(os.path.join(label_path, "*.txt")))
feature_list = [np.load(f).transpose() for f in feature_file_names]
label_list = [np.array(pd.read_csv(f, sep=" ", index_col=None, header=None)[0].to_numpy()) for f in
label_file_names]
mapping_dict = pd.read_csv(label_map_file_name, sep=" ", index_col=None, header=None)[1].to_dict()
label_seg_list = self.generate_boundary_labels(label_list, mapping_dict)
X_long, y_long, y_seg_long, file_boundaries_indice = self.patchwork(feature_list, label_list, label_seg_list)
y_seg_long = np.array(self.generate_boundary_labels([y_long],{})).flatten()
X_long = X_long[::2]
y_long = y_long[::2]
y_seg_long = y_seg_long[::2]
file_boundaries_indice = file_boundaries_indice//2
elif self.data_name == "GTEA":
data_path = 'datasets/GTEA/features'
label_path = 'datasets/GTEA/groundTruth'
label_map_file_name = 'datasets/GTEA/mapping.txt'
feature_file_names = sorted(glob.glob(os.path.join(data_path, "*.npy")))
label_file_names = sorted(glob.glob(os.path.join(label_path, "*.txt")))
mapping_dict = pd.read_csv(label_map_file_name, sep=" ", index_col=None, header=None)[1].to_dict()
feature_list = [np.load(f).transpose() for f in feature_file_names]
label_list = [np.array(pd.read_csv(f, sep=" ", index_col=None, header=None)[0].to_numpy()) for f in
label_file_names]
label_seg_list = self.generate_boundary_labels(label_list, mapping_dict)
X_long, y_long, y_seg_long, file_boundaries_indice = self.patchwork(feature_list, label_list, label_seg_list)
y_seg_long = np.array(self.generate_boundary_labels([y_long], {})).flatten()
elif self.data_name == "mHealth":
data_path = 'datasets/mHealth'
file_names = sorted(glob.glob(os.path.join(data_path, "*.log")))
sampling_rate = 50
total_length = 0
file_boundaries_indice = []
isfirst = True
for f in tqdm(file_names, leave=False, desc="mHealth stitching"):
Xy = np.loadtxt(f)
X_long_part = Xy[:,:-1]
y_long_part = Xy[:,-1]
X_long_part = X_long_part[y_long_part!=0]
y_long_part = y_long_part[y_long_part!=0]
assert(np.sum(y_long_part==0)==0)
total_length += len(X_long_part)
if isfirst:
X_long = X_long_part
y_long = y_long_part
isfirst = False
else:
X_long = np.concatenate([X_long, X_long_part], axis=0)
y_long = np.concatenate([y_long, y_long_part], axis=0)
file_boundaries_indice.append(total_length)
y_long -= 1
label_seg_list = self.generate_boundary_labels([y_long], {})
y_seg_long = label_seg_list[0]
elif self.data_name == "HAPT":
data_path = 'datasets/HAPT/RawData'
acc_files = sorted(glob.glob(os.path.join(data_path, "acc*.txt")))
gyro_files = sorted(glob.glob(os.path.join(data_path, "gyro*.txt")))
df_acc = pd.concat((pd.read_csv(f, sep=' ', index_col=None, header=None) for f in acc_files))
df_gyro = pd.concat((pd.read_csv(f, sep=' ', index_col=None, header=None) for f in gyro_files))
X = pd.concat([df_acc, df_gyro], axis=1).to_numpy()
y = np.zeros(len(X))
file_boundaries_vector = np.zeros(len(X))
np_label = np.loadtxt(os.path.join(data_path, 'labels.txt'), dtype=np.int32)
for label_row in np_label:
num_exp = label_row[0]
if (num_exp - 1 < 10) and (num_exp - 1 > 0):
fname = "acc_exp0" + str(num_exp - 1) + "*.txt"
f = glob.glob(os.path.join(data_path, fname))[0]
elif num_exp == 1:
pass
else:
fname = "acc_exp" + str(num_exp - 1) + "*.txt"
f = glob.glob(os.path.join(data_path, fname))[0]
if num_exp == 1:
offset = 0
else:
if prev_num_exp != num_exp:
offset = len(pd.read_csv(f, sep=' ', index_col=None, header=None)) + offset
file_boundaries_vector[offset] = 1
start = offset + label_row[3] - 1
end = offset + label_row[4]
label = label_row[2]
prev_num_exp = num_exp
y[start:end] = label
# find transition points
# make transition label from label into boundary label(1 or 2, as 0 means no label)
trans_y = np.zeros(len(y)) # zero means unlabeled data
for ind, cls_label in enumerate(y):
if cls_label != 0:
trans_y[ind] = 1 # one means labeled but not boundary data
file_boundaries_indice_prev = np.where(file_boundaries_vector==1)[0]
start = 0
new_start = 0
file_boundaries_indice = []
for i in range(len(file_boundaries_indice_prev)):
prev_length = file_boundaries_indice_prev[i] - start
prev_y_file = y[start:file_boundaries_indice_prev[i]+1]
start = file_boundaries_indice_prev[i]
file_boundaries_indice.append(new_start + prev_length-np.sum(prev_y_file==0))
new_start = new_start + prev_length-np.sum(prev_y_file==0)
X_long = X[y != 0]
y_long = y[y != 0]
y_seg_long = trans_y[y != 0]
y_long = y_long-1
y_seg_long = y_seg_long-1
y_seg_long[np.where((y_long == 6) | (y_long == 7) | (y_long == 8) | (y_long == 9) | (y_long == 10) | (y_long == 11))] = 1
boundary_list = []
segment_len_list = []
label_seg_list = []
for video_label in [y_long]:
label_seg_list.append(np.zeros(len(video_label)))
boundaries = []
segment_len = []
length = 0
for ind, (prev_label, curr_label) in enumerate(zip(video_label, video_label[1:])):
length += 1
condition = ((prev_label == 3) & (curr_label == 4)) | ((prev_label == 4) & (curr_label == 3)) | \
((prev_label == 3) & (curr_label == 5)) | ((prev_label == 5) & (curr_label == 3)) | \
((prev_label == 4) & (curr_label == 5)) | ((prev_label == 5) & (curr_label == 4))
# boundary labels where transition labels do not exist
if (not condition) & (prev_label!=curr_label):
boundaries.append(ind)
segment_len.append(length)
length = 0
boundary_list.append(boundaries)
segment_len_list.append(segment_len)
segment_len_list[0].append(length) # put last segment length (this is hard coding)
ratio = self.boundary_ratio # put 10% of min(rhs/lhs segment) as boundary label.
for i in range(len(boundary_list)):
for j in range(len(boundary_list[i])):
lhs_boundary_length = segment_len_list[i][j] * ratio
rhs_boundary_length = segment_len_list[i][j + 1] * ratio
boundary_length = np.minimum(lhs_boundary_length, rhs_boundary_length)
start_ind = int(boundary_list[i][j] - boundary_length)
end_ind = int(boundary_list[i][j] + boundary_length)
y_seg_long[start_ind:end_ind] = 1
for (trans_label, (converted1, converted2)) in [(6, (4, 3)), (7, (3, 4)), (8, (3, 5)), (9, (5, 3)),
(10, (4, 5)), (11, (5, 4))]:
ind_list = np.where(y_long == trans_label)[0]
prev_j = ind_list[0]
duration_list = [[prev_j]]
is_first = True
for i, (j, k) in enumerate(zip(ind_list, ind_list[1:])):
if (j != k - 1) & (is_first): # finds not continuing index of index list
duration_list[0].append(j)
prev_j = k
is_first = False
continue
if j != k - 1:
duration_list.append([prev_j, j])
prev_j = k
duration_list.append([prev_j, ind_list[-1]])
for start, end in duration_list:
y_long[start:start + int(np.rint((end - start)) / 2)] = converted1
y_long[start + int(np.rint((end - start)) / 2):end + 1] = converted2
X_long = self.long_time_series_normalization(X_long)
file_boundaries = np.zeros(y_seg_long.shape)
if len(file_boundaries_indice) > 0:
file_boundaries[np.array(file_boundaries_indice)-1]=1
X_long = X_long.astype(np.float32)
y_long = y_long.astype(np.int32)
y_seg_long = y_seg_long.astype(np.int32)
file_boundaries = np.array(file_boundaries).astype(np.int32)
np.save(os.path.join("datasets", self.data_name + "_X_long.npy"), X_long)
np.save(os.path.join("datasets", self.data_name + "_y_long.npy"), y_long)
np.save(os.path.join("datasets", self.data_name + "_y_seg_long.npy"), y_seg_long)
np.save(os.path.join("datasets", self.data_name + "_file_boundaries.npy"), file_boundaries)
print(f"{self.data_name} has been preprocessed and saved for further use")
print(X_long.shape, y_long.shape, y_seg_long.shape)
return X_long.astype(np.float32), y_long.astype(np.int32), y_seg_long.astype(np.int32), np.array(file_boundaries).astype(np.int32)
if __name__ == "__main__":
ratio = 0.1
for name in ["50salads", "HAPT","GTEA","mHealth"]:
data = Preprocessing(name, ratio)
X_long, y_long, y_seg_long, file_boundaries = data.generate_long_time_series()
print(type(X_long),type(y_long),type(y_seg_long),type(file_boundaries))
print("########### Data Specification ###########")
print("Number of timestamp and data dimension:", X_long.shape)
print("Number of class:", len(np.unique(y_long)))
print("Class label:", np.unique(y_long))
for i in range(len(np.unique(y_long))):
print("Number of timestamp for class " + str(i) + ":", len(np.where(y_long == i)[0]))
print("Number of boundary class:", len(np.unique(y_seg_long)))
print("Boundary Class label:", np.unique(y_seg_long))
for i in range(len(np.unique(y_seg_long))):
print("Number of timestamp for Boundary Class " + str(i) + ":",
len(np.where(y_seg_long == i)[0]))
print(f"file boundaries {np.where(file_boundaries == 1)[0]}")
print("\n\n")