-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunifyAndsplitOutputs_byNumClass.py
163 lines (114 loc) · 5.5 KB
/
unifyAndsplitOutputs_byNumClass.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
from email import header
import os
import h5py
from collections import Counter
from sklearn.model_selection import train_test_split
import pandas as pd
import numpy as np
from utils import read_h5
CLASS_NUM = 50
class DataReader():
def __init__(self, datasets, kpModel, output_path):
self.classes = []
self.videoName = []
self.data = []
self.output_path = os.path.normpath(output_path)
for dataset in datasets:
path = os.path.normpath(f"output/{dataset}--{kpModel}.hdf5")
classes, videoName, data = read_h5(path)
self.classes = self.classes + classes
self.videoName = self.videoName + videoName
self.data = self.data + data
def deleteSelectedVideosToBan(self):
df_selectedBanned = pd.read_csv("./dataCleaningFunctions/banned_selected_videos.csv", header=None)
selectedBanned = [banned.replace('\\','/') for banned in df_selectedBanned[0]]
# We go through the inverse of the list to use "pop" to delete the banned words
for pos in range(len(self.videoName)-1, -1, -1):
if self.videoName[pos] in selectedBanned:
self.classes.pop(pos)
self.videoName.pop(pos)
self.data.pop(pos)
def deleteBannedWords(self):
df_bannedWords = pd.read_csv("./bannedList.csv",encoding='latin1', header=None)
bannedList = list(df_bannedWords[0])
bannedList = bannedList + [ban.upper() for ban in bannedList] + ['ÉL','TÚ','','G-R'] + ['LUGAR', 'QUÉ?', 'SÍ', 'MANEJAR', 'TÚ', 'AHÍ', 'DORMIR', 'CUATRO', 'ÉL', 'NNN'] #["hummm"]
for pos in range(len(self.classes)-1, -1, -1):
if self.classes[pos] in bannedList:
self.classes.pop(pos)
self.videoName.pop(pos)
self.data.pop(pos)
def generate_meaning_dict(self):
meaning = {v:k for (k,v) in enumerate(set(self.classes))}
self.labels = [meaning[_class] for _class in self.classes]
def fixClasses(self):
self.classes = list(map(lambda x: x.replace('amigos', 'amigo'), self.classes))
_before = len(self.classes)
self.deleteSelectedVideosToBan()
print(f"About {_before - len(self.classes)} instances has been deleted by the ban list 'selectedVideos'")
_before = len(self.classes)
self.deleteBannedWords()
print(f"About {_before - len(self.classes)} instances has been deleted by the ban list 'banned words'")
def selectClasses(self, selected):
for pos in range(len(self.classes)-1, -1, -1):
if self.classes[pos] not in selected:
self.classes.pop(pos)
self.videoName.pop(pos)
self.data.pop(pos)
def saveData(self, indexOrder, train=True):
#reorder data
class_tmp = [self.classes[pos] for pos in indexOrder]
videoName_tmp = [self.videoName[pos] for pos in indexOrder]
data_tmp = [self.data[pos] for pos in indexOrder]
labels_tmp = [self.labels[pos] for pos in indexOrder]
print(set(class_tmp))
print(len(set(class_tmp)))
# set the path
save_path = os.path.normpath(f"split/{self.output_path.split(os.sep)[1]}")
save_path = save_path.split('.')
if train:
print("Train:", len(indexOrder))
path = f"{save_path[0]}-Train.hdf5"
else:
print("Val:", len(indexOrder))
path = f"{save_path[0]}-Val.hdf5"
# Save H5
h5_file = h5py.File(path, 'w')
for pos, (c, v, d, l) in enumerate(zip(class_tmp, videoName_tmp, data_tmp, labels_tmp)):
grupo_name = f"{pos}"
h5_file.create_group(grupo_name)
h5_file[grupo_name]['video_name'] = v # video name (str)
h5_file[grupo_name]['label'] = c # classes (str)
h5_file[grupo_name]['data'] = d # data (Matrix)
#h5_file[grupo_name]['class_number'] = l #label (int)
h5_file.close()
def splitDataset(self):
# To know the number of instance per clases
counter = Counter(self.classes)
print(counter)
# Select the words that have more or equal than 100 instances
words = counter.most_common(CLASS_NUM)
counter = [word for (word, count) in words]
print('#'*40)
# Filter the data to have selected instances
self.selectClasses(counter)
counter = Counter(self.classes)
print(*dict(counter).keys())
# generate classes number to use it in stratified option
self.generate_meaning_dict()
print()
# split the data into Train and Val (but use list position as X to reorder)
x_pos = range(len(self.labels))
pos_train, pos_val, y_train, y_val = train_test_split(x_pos, self.labels, train_size=0.8 , random_state=32, stratify=self.labels)
# save the data
self.saveData(pos_train,train=True)
self.saveData(pos_val, train=False)
kpModel = "mediapipe"
datasets = ["PUCP_PSL_DGI305", "AEC"] #["AEC", "PUCP_PSL_DGI156", "PUCP_PSL_DGI305", "WLASL", "AUTSL"]
dataset_out_name = [dataset if len(dataset)<6 else dataset[-6:] for dataset in datasets]
dataset_out_name = '-'.join(dataset_out_name)
print(f"procesing {datasets} - using {kpModel} ...")
output_path = f"output/{dataset_out_name}--{CLASS_NUM}--{kpModel}.hdf5"
dataReader = DataReader(datasets, kpModel, output_path)
dataReader.fixClasses()
dataReader.splitDataset()
#splitDataset(path)