-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfigTest.py
324 lines (223 loc) · 8.73 KB
/
configTest.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
import os
import shutil
import errno
import csv
import pandas as pd
import subprocess
import re
# ----------------------------------------- auxiliar function utils ---------------------------------------------
def check_kal_names(filenames):
for filename in filenames:
if not re.match(r"[a-zA-Z0-9]+_[a-zA-Z0-9]+", filename):
raise ValueError('FILENAME FORMAT ERROR IN: ' + filename + ' It MUST consists on \"CHARACTERS_CHARACTERS\"')
# else:
# print('Correct format name for: ' + filename)
def silentDirectory_remove(filename):
try:
shutil.rmtree(filename)
except OSError as e: # this would be "except OSError, e:" before Python 2.6
if e.errno != errno.ENOENT: # errno.ENOENT = no such file or directory
raise # re-raise exception if a different error occurred
def silentFile_remove(filename):
try:
os.remove(filename)
except OSError as e: # this would be "except OSError, e:" before Python 2.6
if e.errno != errno.ENOENT: # errno.ENOENT = no such file or directory
raise # re-raise exception if a different error occurred
def search_by_subject(id,path):
filenames = os.listdir(path)
for ifile in filenames:
if ifile.startswith(id):
return ifile
def getColumns(filename,path):
# print("Path: ")
# print(path)
# print("Filename: ")
# print(filename)
# print(path + filename)
data = pd.DataFrame(columns=('Start', 'End', 'Word Transcription', 'Phoneme Transcription'))
reader = open(path + filename, 'r', errors='ignore')
lines = reader.readlines()
for line in lines:
line = bytes(line, 'utf-8').decode('utf-8', 'ignore')
items = line.split('\t')
data.loc[len(data)] = items
return data
def hexa2dec(L_in):
L_out = list()
for item in L_in:
L_out.append(item.replace('\x00',''))
return L_out
def make_uttID(recording_id, nRows):
s = list()
for i in range(nRows):
s.append(recording_id + '-utt' + str(i))
return s
def unique(list1):
unique_list = []
# traverse for all elements
for x in list1:
if x not in unique_list:
unique_list.append(x)
return unique_list
def check_WAV_KAL(wav_path,kal_filenames,train):
wav_filenames = os.listdir(wav_path)
x = lambda filename : filename[:-4]
wav_filenames = list(map(x,wav_filenames))
kal_filenames = list(map(x,kal_filenames))
if train == 'yes':
for kal_file in kal_filenames:
if kal_file not in wav_filenames:
raise ValueError('A .kal file does not have its .wav file correspondence. Specifically: ' + kal_file + ' You need to insert it in the train folder a .WAV file with that name.')
if train == 'no':
for kal_file in kal_filenames:
if kal_file not in wav_filenames:
raise ValueError('A .kal file does not have its .wav file correspondence. Specifically: ' + kal_file + ' You need to insert it in the test folder a .WAV file with that name.')
def check_path_names(path_list):
for path in path_list:
if path[-1] != '/':
raise ValueError('Path name: ' + path + ' NOT contains a / character at the end.')
# ----------------------------------------- auxiliar file creators ---------------------------------------------
def makeSegments(dataDict, path):
s = ''
for rec_id, df in dataDict.items():
for index, row in df.iterrows():
s = s + row['utterance ID'] + ' ' + rec_id + ' ' + row['Start'] + ' ' + row['End'] + '\n'
writer = open(path + 'segments','+w')
writer.write(s)
writer.close()
def makeWav(dataDict, path, audios_path):
print(audios_path)
w = ''
for rec_id, df in dataDict.items():
w = w + rec_id + ' ' + audios_path + rec_id + '.wav' + '\n'
print(w)
print(path)
writer = open(path + 'wav.scp','+w')
writer.write(w)
writer.close()
def makeText(dataDict, path):
t = ''
for rec_id, df in dataDict.items():
for index, row in df.iterrows():
t = t + row['utterance ID'] + ' ' + row['Word Transcription'] + '\n'
writer = open(path + 'text','+w')
writer.write(t)
writer.close()
def makeUtt2spk(dataDict, path):
u = ''
for rec_id, df in dataDict.items():
for index, row in df.iterrows():
speaker = row['utterance ID'].split('-')
u = u + row['utterance ID'] + ' ' + speaker[0] + '\n'
writer = open(path + 'utt2spk','+w')
writer.write(u)
writer.close()
def lexiconDict(dataDict):
words =list()
phonemes =list()
for rec_id, df in dataDict.items():
word_phoneme = df[['Word Transcription','Phoneme Transcription']]
for index, row in word_phoneme.iterrows():
irowWord = str(row['Word Transcription'])
irowPhonemes = str(row['Phoneme Transcription'])
if len(irowWord.split(' ')) != len(irowPhonemes.split(' ')):
raise ValueError('Format error in line: ' + str(index))
for iword in irowWord.split(' '):
words.append(iword)
for iphoneme in irowPhonemes.split(' '):
phonemes.append(iphoneme)
phonemes = list(map(lambda s: s.strip('\n'),phonemes))
x = ''
new_dict = {}
for i in range(len(words)):
if words[i] not in new_dict.keys():
new_dict[words[i]] = x.join(list(map(lambda s: s.replace('_',' '),phonemes[i])))
if len(words) != len(phonemes):
raise ValueError('Words: '+ str(len(words)) +'Phonemes: '+str(len(phonemes)))
return new_dict,new_dict.values()
def uniquePhonemes(phonemes_per_word):
phonemes = list()
for iphonemes in phonemes_per_word:
for iphoneme in iphonemes.split():
phonemes.append(iphoneme)
phonemes = unique(phonemes)
return phonemes
def makeLexicon(lexDict,path):
l = '<SIL> SIL\n'
for word, phonemes in lexDict.items():
l = l + word + ' ' + phonemes + '\n'
writer = open(path + 'lexicon.txt','+w')
writer.write(l)
writer.close()
def makeLexiconP(lexDict, path):
l = '<SIL> 1.0 SIL\n'
for word, phonemes in lexDict.items():
l = l + word + ' ' + '1.0' + ' ' + phonemes + '\n'
writer = open(path + 'lexiconp.txt','+w')
writer.write(l)
writer.close()
def makeNonSilencePhones(phonemes,path):
n = ''
for iphoneme in phonemes:
n = n + iphoneme + '\n'
writer = open(path + 'nonsilence_phones.txt','+w')
writer.write(n)
writer.close()
def makeOptionalSilence(path):
o = 'SIL\n'
writer = open(path + 'optional_silence.txt','+w')
writer.write(o)
writer.close()
def makeSilencePhones(path):
o = 'SIL\n'
writer = open(path + 'silence_phones.txt','+w')
writer.write(o)
writer.close()
def makeCorpus(words, path):
c = ''
for iword in words:
c = c + iword + '\n'
writer = open(path + 'corpus.txt','+w')
writer.write(c)
writer.close()
def main(test_ID, audiosTest_path, testInfo_path):
# ------------------------------------------- SETTING UP VARIABLES ---------------------------------------------
dataTest_path = 'data/test/'
check_path_names([testInfo_path,dataTest_path,audiosTest_path])
# --------------------------------------------- MAIN PROCEDURES ---------------------------------------------
# Setting up folders
#Extract ids recording information:
tsDataDict = {}
silentDirectory_remove(dataTest_path)
os.mkdir(dataTest_path)
#Check .kal filename format:
check_kal_names(test_ID)
#Check exact same filenames from .kal files to .wav files:
check_WAV_KAL(audiosTest_path,test_ID, 'no')
#print('Test files: ')
for id in test_ID:
filename = search_by_subject(id,testInfo_path)
cols = getColumns(filename,testInfo_path)
cols['Start'] = hexa2dec(list(cols['Start']))
cols['End'] = hexa2dec(list(cols['End']))
cols['Word Transcription'] = hexa2dec(list(cols['Word Transcription']))
cols['Phoneme Transcription'] = hexa2dec(list(cols['Phoneme Transcription']))
utt_id = make_uttID(filename[:-4], len(cols['Start']))
cols.insert(0, 'utterance ID', utt_id)
tsDataDict[filename[:-4]] = cols
#print('Test Dictionary')
#print(tsDataDict)
#Make segment files
makeSegments(tsDataDict, dataTest_path)
#Make wavs.scp file
makeWav(tsDataDict, dataTest_path, audiosTest_path)
#Make text file
makeText(tsDataDict, dataTest_path)
#Make utt2spk file
makeUtt2spk(tsDataDict, dataTest_path)
#Make spk2utt file
from subprocess import Popen
bashCommand = "utils/utt2spk_to_spk2utt.pl data_init/test/utt2spk > data_init/test/spk2utt"
process = Popen(bashCommand,shell=True)
output, error = process.communicate()