-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathUtils.py
306 lines (245 loc) · 9.38 KB
/
Utils.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
#!/usr/bin/env python
# -*- coding:utf-8 -*-
import functools
import time
from multiprocessing import Pool, Manager
import struct
import numpy as np
import os
import pandas as pd
EX1 = "use decorator @log that you should append a string parameter in your return tuple so we can write it to log file\n"
class HTKFile:
""" Class to load binary HTK file.
Details on the format can be found online in HTK Book chapter 5.7.1.
Not everything is implemented 100%, but most features should be supported.
Not implemented:
CRC checking - files can have CRC, but it won't be checked for correctness
VQ - Vector features are not implemented.
"""
data = None
nSamples = 0
nFeatures = 0
sampPeriod = 0
basicKind = None
qualifiers = None
# easy to call this class
def __call__(self, filename):
return self.load(filename)
def load(self, filename):
""" Loads HTK file.
After loading the file you can check the following members:
data (matrix) - data contained in the file
nSamples (int) - number of frames in the file
nFeatures (int) - number if features per frame
sampPeriod (int) - sample period in 100ns units (e.g. fs=16 kHz -> 625)
basicKind (string) - basic feature kind saved in the file
qualifiers (string) - feature options present in the file
"""
with open(filename, "rb") as f:
header = f.read(12)
self.nSamples, self.sampPeriod, sampSize, paramKind = struct.unpack(">iihh", header)
basicParameter = paramKind & 0x3F
if basicParameter is 0:
self.basicKind = "WAVEFORM"
elif basicParameter is 1:
self.basicKind = "LPC"
elif basicParameter is 2:
self.basicKind = "LPREFC"
elif basicParameter is 3:
self.basicKind = "LPCEPSTRA"
elif basicParameter is 4:
self.basicKind = "LPDELCEP"
elif basicParameter is 5:
self.basicKind = "IREFC"
elif basicParameter is 6:
self.basicKind = "MFCC"
elif basicParameter is 7:
self.basicKind = "FBANK"
elif basicParameter is 8:
self.basicKind = "MELSPEC"
elif basicParameter is 9:
self.basicKind = "USER"
elif basicParameter is 10:
self.basicKind = "DISCRETE"
elif basicParameter is 11:
self.basicKind = "PLP"
else:
self.basicKind = "ERROR"
self.qualifiers = []
if (paramKind & 0o100) != 0:
self.qualifiers.append("E")
if (paramKind & 0o200) != 0:
qualifiers.append("N")
if (paramKind & 0o400) != 0:
self.qualifiers.append("D")
if (paramKind & 0o1000) != 0:
self.qualifiers.append("A")
if (paramKind & 0o2000) != 0:
self.qualifiers.append("C")
if (paramKind & 0o4000) != 0:
self.qualifiers.append("Z")
if (paramKind & 0o10000) != 0:
self.qualifiers.append("K")
if (paramKind & 0o20000) != 0:
self.qualifiers.append("0")
if (paramKind & 0o40000) != 0:
self.qualifiers.append("V")
if (paramKind & 0o100000) != 0:
self.qualifiers.append("T")
if "C" in self.qualifiers or "V" in self.qualifiers or self.basicKind is "IREFC" or self.basicKind is "WAVEFORM":
self.nFeatures = sampSize // 2
else:
self.nFeatures = sampSize // 4
if "C" in self.qualifiers:
self.nSamples -= 4
if "V" in self.qualifiers:
raise NotImplementedError("VQ is not implemented")
self.data = []
if self.basicKind is "IREFC" or self.basicKind is "WAVEFORM":
for x in range(self.nSamples):
s = f.read(sampSize)
frame = []
for v in range(self.nFeatures):
val = struct.unpack_from(">h", s, v * 2)[0] / 32767.0
frame.append(val)
self.data.append(np.array(frame))
elif "C" in self.qualifiers:
A = []
s = f.read(self.nFeatures * 4)
for x in range(self.nFeatures):
A.append(struct.unpack_from(">f", s, x * 4)[0])
B = []
s = f.read(self.nFeatures * 4)
for x in range(self.nFeatures):
B.append(struct.unpack_from(">f", s, x * 4)[0])
for x in range(self.nSamples):
s = f.read(sampSize)
frame = []
for v in range(self.nFeatures):
frame.append((struct.unpack_from(">h", s, v * 2)[0] + B[v]) / A[v])
self.data.append(np.array(frame))
else:
for x in range(self.nSamples):
s = f.read(sampSize)
frame = []
for v in range(self.nFeatures):
val = struct.unpack_from(">f", s, v * 4)
frame.append(val[0])
self.data.append(np.array(frame))
self.data = np.array(self.data)
if "K" in self.qualifiers:
print("CRC checking not implememnted...")
return self
def p():
def log_decorator(f):
@functools.wraps(f)
def wrapper(*args, **kw):
count = 1
rlt = f(*args, **kw)
print('[%d]\n' % (count))
count += 1
return rlt
return wrapper
return log_decorator
# compute the cose of time
def timing(type):
def log_decorator(f):
@functools.wraps(f)
def wrapper(*args, **kw):
start = time.time()
rlt = f(*args, **kw)
elapse = time.time() - start
print('[%s] time: %.2f s' % (type, elapse))
return rlt
return wrapper
return log_decorator
class Timing(object):
'''
用上下文管理器计时
e.g.:
with MyTimer() as t:
test(1,2)
time.sleep(1)
print 'do other things'
'''
# __init is not must needed, just because i want to get a "type" parameter to show in the __exit__() method
def __init__(self, type):
self.type = type
def __enter__(self):
self.start = time.time()
def __exit__(self, exc_type, exc_val, exc_tb):
elapse = time.time() - self.start
print('[%s] time: %.2f s' % (self.type, elapse))
# if filePath is None then the default direction is './log.txt'
def log(filePath):
def log_decorator(f):
@functools.wraps(f)
def wrapper(*args, **kw):
filePath1 = createDir(filePath)
rlt = f(*args, **kw)
if rlt == None:
raise Exception(EX1)
if isinstance(rlt, tuple): # if rlt is tuple ,the reture is much more 1 parameter,so we only use last one
with open(filePath1, "a") as fileW:
fileW.writelines(str(rlt[-1]))
if len(rlt[:-1]) == 1:
rlt = rlt[0]
else:
rlt = rlt[:-1]
else:
with open(filePath1, "a") as fileW:
fileW.writelines(str(rlt))
rlt = None
return rlt
return wrapper
return log_decorator
def createDir(filePath):
filePath1 = filePath
# filePath is external variable ,
# cannot be revised in the method (if must revised,we can add key word 'global' or assign another variable 'filePath1' to handle)
if filePath1 == None:
filePath1 = "./log.txt"
file_dir = os.path.split(filePath1)[0]
# 判断文件路径是否存在,如果不存在,则创建,此处是创建多级目录
if not os.path.isdir(file_dir):
os.makedirs(file_dir)
return filePath1
class Log(object):
def __init__(self, filePath, logStr):
self.filePath = filePath
self.logStr = logStr
def __enter__(self):
# nothing to do
pass
def __exit__(self, exc_type, exc_val, exc_tb):
filePath1 = createDir(self.filePath)
with open(filePath1, "a") as fileW:
fileW.writelines(str(self.logStr))
def proc(fname):
# tmp=htk(ffpath).data is used to read htk file ,if use it ,then you should comment the next 2 code
# tmp=htk(ffpath).data
df = pd.read_csv(fname, sep=' ', dtype=float)
tmp = df.dropna(axis=1, how='all').as_matrix()
size = np.shape(tmp)
with lock:
data_x.append(tmp)
dataSize.append(size)
def multiReadProc(files):
manager = Manager()
data_x = manager.list()
dataSize = manager.list()
lock = manager.Lock()
pool = Pool(initializer=globalVarinit,initargs=(lock,data_x,dataSize)) # default number of processes is os.cpu_count()
pool.map(proc, files)
pool.close()
pool.join()
tmp1=data_x
tmp2=dataSize
return tmp1, tmp2
def globalVarinit(_lock,_data,_dataSize):
global data_x
global dataSize
global lock
data_x=_data
lock=_lock
dataSize=_dataSize