Comparison of GMM performances Specifically how GMMs adapted from UBMs performe compared to unadapted GMMs
In [2]:
# general imports
import os
import pickle
import numpy as np
import copy
In [3]:
# import Scykit learn GMM library
from sklearn import mixture
In [4]:
# import custom functions
import sys
# path to libraries
# currently in ../scripts-lib/
tool_path = os.path.abspath('../scripts-lib')
if tool_path not in sys.path:
sys.path.append(tool_path)
import lib_phones as lph
# print the loaded functions
print dir(lph)[5:]
['find_phone_index', 'load_phone_file']
In [5]:
# load phone list
phone_path = os.path.abspath('../datasets/TIMIT-MFCCs/TIMIT_phone_list.txt')
phone_list = lph.load_phone_file(phone_path)
print len(phone_list), phone_list
61 ['aa', 'ae', 'ah', 'ao', 'aw', 'ax', 'ax-h', 'axr', 'ay', 'b', 'bcl', 'ch', 'd', 'dcl', 'dh', 'dx', 'eh', 'el', 'em', 'en', 'eng', 'epi', 'er', 'ey', 'f', 'g', 'gcl', 'h#', 'hh', 'hv', 'ih', 'ix', 'iy', 'jh', 'k', 'kcl', 'l', 'm', 'n', 'ng', 'nx', 'ow', 'oy', 'p', 'pau', 'pcl', 'q', 'r', 's', 'sh', 't', 'tcl', 'th', 'uh', 'uw', 'ux', 'v', 'w', 'y', 'z', 'zh']
In [6]:
# load adapted GMMs pickled file
pickle_dir = os.path.abspath('../datasets/TIMIT Pickled Data')
pickle_name = 'TIMIT_gmm_adapted_dict.pckl'
agmm_dict = pickle.load( open(pickle_dir + os.sep + pickle_name, "rb") )
print "loaded adapted gmm from ", pickle_dir + os.sep + pickle_name
loaded adapted gmm from C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT Pickled Data\TIMIT_gmm_adapted_dict.pckl
In [7]:
# load un-adapted GMMs pickled file
pickle_name = 'TIMIT_gmm_unadapted_dict.pckl'
ugmm_dict = pickle.load( open(pickle_dir + os.sep + pickle_name, "rb") )
print "loaded unadapted gmm from ", pickle_dir + os.sep + pickle_name
loaded unadapted gmm from C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT Pickled Data\TIMIT_gmm_unadapted_dict.pckl
In [8]:
#load test mfccs into sklearn observations, each frame is an obs
test_TIMIT_dir = os.path.abspath('../datasets/TIMIT-MFCCs/test')
#create individual obs list for each phone type
test_phone_obs_dict = {}
for phone in phone_list:
test_phone_obs_dict[phone] = []
# complete obs
test_obs = []
test_obs_labels = []
# walk the directories
for (path, dirs, files) in os.walk(test_TIMIT_dir):
print "working in path : " + path
for file in files:
# skip the SA files
#dev, only work on file si1573.mfcc.csv "si1573" in file and
if ".mfcc" in file and "sa" not in file:
#check if corresponding .phn file exists
if not os.path.exists(path + "/" + file[:-8] + "phn"):
print path + "/" + file[:-8] + "phn"
print "corresponding .phn file does not exist!"
else:
print "working on: " + file
# print "from path : " + path
# open the files
mfcc_file = open(path + "/" + file)
phn_file = open(path + "/" + file[:-8] + "phn")
# extract phone times
phone_times = []
for phn_line in phn_file:
phone_times.append(phn_line.split())
# transpose for easier use
phone_times = map(list, zip(*phone_times))
# skip mfcc_file header
next(mfcc_file)
# reset frame count
frame_cnt = 0
# for each line of mfcc_file
for mfcc_line in mfcc_file:
# increment frame count
frame_cnt += 1
# print "frame line #:", frame_cnt
# frame start time in seconds
start_t = mfcc_line.split(";")[1]
# create frame (skiping first 2 values, frame_index and frame_time)
frame = map( float, mfcc_line.split(";")[2:])
# print numpy.shape(frame)
# print frame
# find correspond phoneme and index in the list
phn_index = lph.find_phone_index(start_t, phone_times, phone_list)
# add to instances for corresponding phone
test_phone_obs_dict[phone_list[phn_index]].append(frame)
# add to instances
test_obs.append(frame)
test_obs_labels.append(phone_list[phn_index])
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr1
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr1\faks0
working on: si1573.mfcc.csv
working on: si2203.mfcc.csv
working on: si943.mfcc.csv
working on: sx133.mfcc.csv
working on: sx223.mfcc.csv
working on: sx313.mfcc.csv
working on: sx403.mfcc.csv
working on: sx43.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr1\fdac1
working on: si1474.mfcc.csv
working on: si2104.mfcc.csv
working on: si844.mfcc.csv
working on: sx124.mfcc.csv
working on: sx214.mfcc.csv
working on: sx304.mfcc.csv
working on: sx34.mfcc.csv
working on: sx394.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr1\felc0
working on: si1386.mfcc.csv
working on: si2016.mfcc.csv
working on: si756.mfcc.csv
working on: sx126.mfcc.csv
working on: sx216.mfcc.csv
working on: sx306.mfcc.csv
working on: sx36.mfcc.csv
working on: sx396.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr1\fjem0
working on: si1264.mfcc.csv
working on: si1894.mfcc.csv
working on: si634.mfcc.csv
working on: sx184.mfcc.csv
working on: sx274.mfcc.csv
working on: sx364.mfcc.csv
working on: sx4.mfcc.csv
working on: sx94.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr1\mdab0
working on: si1039.mfcc.csv
working on: si1669.mfcc.csv
working on: si2299.mfcc.csv
working on: sx139.mfcc.csv
working on: sx229.mfcc.csv
working on: sx319.mfcc.csv
working on: sx409.mfcc.csv
working on: sx49.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr1\mjsw0
working on: si1010.mfcc.csv
working on: si1640.mfcc.csv
working on: si2270.mfcc.csv
working on: sx110.mfcc.csv
working on: sx20.mfcc.csv
working on: sx200.mfcc.csv
working on: sx290.mfcc.csv
working on: sx380.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr1\mreb0
working on: si1375.mfcc.csv
working on: si2005.mfcc.csv
working on: si745.mfcc.csv
working on: sx115.mfcc.csv
working on: sx205.mfcc.csv
working on: sx25.mfcc.csv
working on: sx295.mfcc.csv
working on: sx385.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr1\mrjo0
working on: si1364.mfcc.csv
working on: si1624.mfcc.csv
working on: si734.mfcc.csv
working on: sx104.mfcc.csv
working on: sx14.mfcc.csv
working on: sx194.mfcc.csv
working on: sx284.mfcc.csv
working on: sx374.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr1\msjs1
working on: si1899.mfcc.csv
working on: si639.mfcc.csv
working on: si869.mfcc.csv
working on: sx189.mfcc.csv
working on: sx279.mfcc.csv
working on: sx369.mfcc.csv
working on: sx9.mfcc.csv
working on: sx99.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr1\mstk0
working on: si1024.mfcc.csv
working on: si2222.mfcc.csv
working on: si2284.mfcc.csv
working on: sx124.mfcc.csv
working on: sx214.mfcc.csv
working on: sx304.mfcc.csv
working on: sx34.mfcc.csv
working on: sx394.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr1\mwbt0
working on: si1553.mfcc.csv
working on: si2183.mfcc.csv
working on: si923.mfcc.csv
working on: sx113.mfcc.csv
working on: sx203.mfcc.csv
working on: sx23.mfcc.csv
working on: sx293.mfcc.csv
working on: sx383.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr2
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr2\fcmr0
working on: si1105.mfcc.csv
working on: si1735.mfcc.csv
working on: si475.mfcc.csv
working on: sx115.mfcc.csv
working on: sx205.mfcc.csv
working on: sx25.mfcc.csv
working on: sx295.mfcc.csv
working on: sx385.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr2\fdrd1
working on: si1544.mfcc.csv
working on: si1566.mfcc.csv
working on: si2149.mfcc.csv
working on: sx104.mfcc.csv
working on: sx14.mfcc.csv
working on: sx194.mfcc.csv
working on: sx284.mfcc.csv
working on: sx374.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr2\fjas0
working on: si1400.mfcc.csv
working on: si2030.mfcc.csv
working on: si770.mfcc.csv
working on: sx140.mfcc.csv
working on: sx230.mfcc.csv
working on: sx320.mfcc.csv
working on: sx410.mfcc.csv
working on: sx50.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr2\fjre0
working on: si1116.mfcc.csv
working on: si1587.mfcc.csv
working on: si1746.mfcc.csv
working on: sx126.mfcc.csv
working on: sx216.mfcc.csv
working on: sx306.mfcc.csv
working on: sx36.mfcc.csv
working on: sx396.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr2\fjwb0
working on: si1265.mfcc.csv
working on: si635.mfcc.csv
working on: si992.mfcc.csv
working on: sx185.mfcc.csv
working on: sx275.mfcc.csv
working on: sx365.mfcc.csv
working on: sx5.mfcc.csv
working on: sx95.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr2\fpas0
working on: si1272.mfcc.csv
working on: si2204.mfcc.csv
working on: si944.mfcc.csv
working on: sx134.mfcc.csv
working on: sx224.mfcc.csv
working on: sx314.mfcc.csv
working on: sx404.mfcc.csv
working on: sx44.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr2\fram1
working on: si1360.mfcc.csv
working on: si522.mfcc.csv
working on: si730.mfcc.csv
working on: sx10.mfcc.csv
working on: sx100.mfcc.csv
working on: sx190.mfcc.csv
working on: sx280.mfcc.csv
working on: sx370.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr2\fslb1
working on: si1904.mfcc.csv
working on: si644.mfcc.csv
working on: si891.mfcc.csv
working on: sx104.mfcc.csv
working on: sx14.mfcc.csv
working on: sx194.mfcc.csv
working on: sx284.mfcc.csv
working on: sx374.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr2\mabw0
working on: si1230.mfcc.csv
working on: si1664.mfcc.csv
working on: si2294.mfcc.csv
working on: sx134.mfcc.csv
working on: sx224.mfcc.csv
working on: sx314.mfcc.csv
working on: sx404.mfcc.csv
working on: sx44.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr2\mbjk0
working on: si1175.mfcc.csv
working on: si2128.mfcc.csv
working on: si545.mfcc.csv
working on: sx185.mfcc.csv
working on: sx275.mfcc.csv
working on: sx365.mfcc.csv
working on: sx5.mfcc.csv
working on: sx95.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr2\mccs0
working on: si1469.mfcc.csv
working on: si2099.mfcc.csv
working on: si839.mfcc.csv
working on: sx119.mfcc.csv
working on: sx209.mfcc.csv
working on: sx29.mfcc.csv
working on: sx299.mfcc.csv
working on: sx389.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr2\mcem0
working on: si1398.mfcc.csv
working on: si2028.mfcc.csv
working on: si768.mfcc.csv
working on: sx138.mfcc.csv
working on: sx228.mfcc.csv
working on: sx318.mfcc.csv
working on: sx408.mfcc.csv
working on: sx48.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr2\mdbb0
working on: si1195.mfcc.csv
working on: si1825.mfcc.csv
working on: si565.mfcc.csv
working on: sx115.mfcc.csv
working on: sx205.mfcc.csv
working on: sx25.mfcc.csv
working on: sx295.mfcc.csv
working on: sx385.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr2\mdld0
working on: si1543.mfcc.csv
working on: si2173.mfcc.csv
working on: si913.mfcc.csv
working on: sx103.mfcc.csv
working on: sx13.mfcc.csv
working on: sx193.mfcc.csv
working on: sx283.mfcc.csv
working on: sx373.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr2\mgwt0
working on: si1539.mfcc.csv
working on: si2169.mfcc.csv
working on: si909.mfcc.csv
working on: sx189.mfcc.csv
working on: sx279.mfcc.csv
working on: sx369.mfcc.csv
working on: sx9.mfcc.csv
working on: sx99.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr2\mjar0
working on: si1988.mfcc.csv
working on: si2247.mfcc.csv
working on: si728.mfcc.csv
working on: sx188.mfcc.csv
working on: sx278.mfcc.csv
working on: sx368.mfcc.csv
working on: sx8.mfcc.csv
working on: sx98.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr2\mmdb1
working on: si1625.mfcc.csv
working on: si2255.mfcc.csv
working on: si995.mfcc.csv
working on: sx185.mfcc.csv
working on: sx275.mfcc.csv
working on: sx365.mfcc.csv
working on: sx5.mfcc.csv
working on: sx95.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr2\mmdm2
working on: si1452.mfcc.csv
working on: si1555.mfcc.csv
working on: si2082.mfcc.csv
working on: sx102.mfcc.csv
working on: sx12.mfcc.csv
working on: sx192.mfcc.csv
working on: sx282.mfcc.csv
working on: sx372.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr2\mpdf0
working on: si1542.mfcc.csv
working on: si2172.mfcc.csv
working on: si912.mfcc.csv
working on: sx102.mfcc.csv
working on: sx12.mfcc.csv
working on: sx192.mfcc.csv
working on: sx282.mfcc.csv
working on: sx372.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr2\mpgl0
working on: si1099.mfcc.csv
working on: si1729.mfcc.csv
working on: si469.mfcc.csv
working on: sx109.mfcc.csv
working on: sx19.mfcc.csv
working on: sx199.mfcc.csv
working on: sx289.mfcc.csv
working on: sx379.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr2\mrcz0
working on: si1541.mfcc.csv
working on: si2171.mfcc.csv
working on: si911.mfcc.csv
working on: sx101.mfcc.csv
working on: sx11.mfcc.csv
working on: sx191.mfcc.csv
working on: sx281.mfcc.csv
working on: sx371.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr2\mrgg0
working on: si1199.mfcc.csv
working on: si1829.mfcc.csv
working on: si569.mfcc.csv
working on: sx119.mfcc.csv
working on: sx209.mfcc.csv
working on: sx29.mfcc.csv
working on: sx299.mfcc.csv
working on: sx389.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr2\mtas1
working on: si1473.mfcc.csv
working on: si2098.mfcc.csv
working on: si838.mfcc.csv
working on: sx118.mfcc.csv
working on: sx208.mfcc.csv
working on: sx28.mfcc.csv
working on: sx298.mfcc.csv
working on: sx388.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr2\mtmr0
working on: si1303.mfcc.csv
working on: si1933.mfcc.csv
working on: si673.mfcc.csv
working on: sx133.mfcc.csv
working on: sx223.mfcc.csv
working on: sx313.mfcc.csv
working on: sx403.mfcc.csv
working on: sx43.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr2\mwew0
working on: si1361.mfcc.csv
working on: si1991.mfcc.csv
working on: si731.mfcc.csv
working on: sx101.mfcc.csv
working on: sx11.mfcc.csv
working on: sx191.mfcc.csv
working on: sx281.mfcc.csv
working on: sx371.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr2\mwvw0
working on: si1476.mfcc.csv
working on: si2106.mfcc.csv
working on: si846.mfcc.csv
working on: sx126.mfcc.csv
working on: sx216.mfcc.csv
working on: sx306.mfcc.csv
working on: sx36.mfcc.csv
working on: sx396.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr3
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr3\fcmh0
working on: si1454.mfcc.csv
working on: si2084.mfcc.csv
working on: si824.mfcc.csv
working on: sx104.mfcc.csv
working on: sx14.mfcc.csv
working on: sx194.mfcc.csv
working on: sx284.mfcc.csv
working on: sx374.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr3\fkms0
working on: si1490.mfcc.csv
working on: si2120.mfcc.csv
working on: si860.mfcc.csv
working on: sx140.mfcc.csv
working on: sx230.mfcc.csv
working on: sx320.mfcc.csv
working on: sx410.mfcc.csv
working on: sx50.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr3\fpkt0
working on: si1538.mfcc.csv
working on: si2168.mfcc.csv
working on: si908.mfcc.csv
working on: sx188.mfcc.csv
working on: sx278.mfcc.csv
working on: sx368.mfcc.csv
working on: sx8.mfcc.csv
working on: sx98.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr3\mbdg0
working on: si1463.mfcc.csv
working on: si2093.mfcc.csv
working on: si833.mfcc.csv
working on: sx113.mfcc.csv
working on: sx203.mfcc.csv
working on: sx23.mfcc.csv
working on: sx293.mfcc.csv
working on: sx383.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr3\mbwm0
working on: si1304.mfcc.csv
working on: si1934.mfcc.csv
working on: si674.mfcc.csv
working on: sx134.mfcc.csv
working on: sx224.mfcc.csv
working on: sx314.mfcc.csv
working on: sx404.mfcc.csv
working on: sx44.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr3\mcsh0
working on: si1549.mfcc.csv
working on: si2179.mfcc.csv
working on: si919.mfcc.csv
working on: sx109.mfcc.csv
working on: sx19.mfcc.csv
working on: sx199.mfcc.csv
working on: sx289.mfcc.csv
working on: sx379.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr3\mctw0
working on: si1373.mfcc.csv
working on: si2003.mfcc.csv
working on: si743.mfcc.csv
working on: sx113.mfcc.csv
working on: sx203.mfcc.csv
working on: sx23.mfcc.csv
working on: sx293.mfcc.csv
working on: sx383.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr3\mgjf0
working on: si1901.mfcc.csv
working on: si641.mfcc.csv
working on: si776.mfcc.csv
working on: sx101.mfcc.csv
working on: sx11.mfcc.csv
working on: sx191.mfcc.csv
working on: sx281.mfcc.csv
working on: sx371.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr3\mglb0
working on: si1534.mfcc.csv
working on: si2164.mfcc.csv
working on: si904.mfcc.csv
working on: sx184.mfcc.csv
working on: sx274.mfcc.csv
working on: sx364.mfcc.csv
working on: sx4.mfcc.csv
working on: sx94.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr3\mhpg0
working on: si1090.mfcc.csv
working on: si1720.mfcc.csv
working on: si460.mfcc.csv
working on: sx10.mfcc.csv
working on: sx100.mfcc.csv
working on: sx190.mfcc.csv
working on: sx280.mfcc.csv
working on: sx370.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr3\mjbr0
working on: si1001.mfcc.csv
working on: si1631.mfcc.csv
working on: si2261.mfcc.csv
working on: sx101.mfcc.csv
working on: sx11.mfcc.csv
working on: sx191.mfcc.csv
working on: sx281.mfcc.csv
working on: sx371.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr3\mjes0
working on: si1384.mfcc.csv
working on: si2014.mfcc.csv
working on: si754.mfcc.csv
working on: sx124.mfcc.csv
working on: sx214.mfcc.csv
working on: sx304.mfcc.csv
working on: sx34.mfcc.csv
working on: sx394.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr3\mjjg0
working on: si1003.mfcc.csv
working on: si1633.mfcc.csv
working on: si2263.mfcc.csv
working on: sx103.mfcc.csv
working on: sx13.mfcc.csv
working on: sx193.mfcc.csv
working on: sx283.mfcc.csv
working on: sx373.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr3\mjmp0
working on: si1535.mfcc.csv
working on: si1791.mfcc.csv
working on: si905.mfcc.csv
working on: sx185.mfcc.csv
working on: sx275.mfcc.csv
working on: sx365.mfcc.csv
working on: sx5.mfcc.csv
working on: sx95.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr3\mjvw0
working on: si1733.mfcc.csv
working on: si1758.mfcc.csv
working on: si473.mfcc.csv
working on: sx113.mfcc.csv
working on: sx203.mfcc.csv
working on: sx23.mfcc.csv
working on: sx293.mfcc.csv
working on: sx383.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr3\mkch0
working on: si1378.mfcc.csv
working on: si1425.mfcc.csv
working on: si2008.mfcc.csv
working on: sx118.mfcc.csv
working on: sx208.mfcc.csv
working on: sx28.mfcc.csv
working on: sx298.mfcc.csv
working on: sx388.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr3\mlnt0
working on: si1574.mfcc.csv
working on: si1902.mfcc.csv
working on: si642.mfcc.csv
working on: sx102.mfcc.csv
working on: sx12.mfcc.csv
working on: sx192.mfcc.csv
working on: sx282.mfcc.csv
working on: sx372.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr3\mmab0
working on: si1362.mfcc.csv
working on: si1992.mfcc.csv
working on: si732.mfcc.csv
working on: sx102.mfcc.csv
working on: sx12.mfcc.csv
working on: sx192.mfcc.csv
working on: sx282.mfcc.csv
working on: sx372.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr3\mmdh0
working on: si1656.mfcc.csv
working on: si2118.mfcc.csv
working on: si2286.mfcc.csv
working on: sx126.mfcc.csv
working on: sx216.mfcc.csv
working on: sx306.mfcc.csv
working on: sx36.mfcc.csv
working on: sx396.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr3\mmjr0
working on: si1648.mfcc.csv
working on: si2166.mfcc.csv
working on: si2278.mfcc.csv
working on: sx118.mfcc.csv
working on: sx208.mfcc.csv
working on: sx28.mfcc.csv
working on: sx298.mfcc.csv
working on: sx388.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr3\mmwh0
working on: si1089.mfcc.csv
working on: si1301.mfcc.csv
working on: si459.mfcc.csv
working on: sx189.mfcc.csv
working on: sx279.mfcc.csv
working on: sx369.mfcc.csv
working on: sx9.mfcc.csv
working on: sx99.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr3\mrtk0
working on: si1093.mfcc.csv
working on: si1723.mfcc.csv
working on: si1750.mfcc.csv
working on: sx103.mfcc.csv
working on: sx13.mfcc.csv
working on: sx193.mfcc.csv
working on: sx283.mfcc.csv
working on: sx373.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr3\mtaa0
working on: si1285.mfcc.csv
working on: si1915.mfcc.csv
working on: si596.mfcc.csv
working on: sx115.mfcc.csv
working on: sx205.mfcc.csv
working on: sx25.mfcc.csv
working on: sx295.mfcc.csv
working on: sx385.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr3\mtdt0
working on: si1994.mfcc.csv
working on: si2254.mfcc.csv
working on: si994.mfcc.csv
working on: sx184.mfcc.csv
working on: sx274.mfcc.csv
working on: sx364.mfcc.csv
working on: sx4.mfcc.csv
working on: sx94.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr3\mthc0
working on: si1015.mfcc.csv
working on: si1645.mfcc.csv
working on: si2275.mfcc.csv
working on: sx115.mfcc.csv
working on: sx205.mfcc.csv
working on: sx25.mfcc.csv
working on: sx295.mfcc.csv
working on: sx385.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr3\mwjg0
working on: si1124.mfcc.csv
working on: si1754.mfcc.csv
working on: si494.mfcc.csv
working on: sx134.mfcc.csv
working on: sx224.mfcc.csv
working on: sx314.mfcc.csv
working on: sx404.mfcc.csv
working on: sx44.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr4
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr4\fadg0
working on: si1279.mfcc.csv
working on: si1909.mfcc.csv
working on: si649.mfcc.csv
working on: sx109.mfcc.csv
working on: sx19.mfcc.csv
working on: sx199.mfcc.csv
working on: sx289.mfcc.csv
working on: sx379.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr4\fcft0
working on: si1178.mfcc.csv
working on: si1808.mfcc.csv
working on: si548.mfcc.csv
working on: sx188.mfcc.csv
working on: sx278.mfcc.csv
working on: sx368.mfcc.csv
working on: sx8.mfcc.csv
working on: sx98.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr4\fcrh0
working on: si1088.mfcc.csv
working on: si1718.mfcc.csv
working on: si458.mfcc.csv
working on: sx188.mfcc.csv
working on: sx278.mfcc.csv
working on: sx368.mfcc.csv
working on: sx8.mfcc.csv
working on: sx98.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr4\fdms0
working on: si1218.mfcc.csv
working on: si1502.mfcc.csv
working on: si1848.mfcc.csv
working on: sx138.mfcc.csv
working on: sx228.mfcc.csv
working on: sx318.mfcc.csv
working on: sx408.mfcc.csv
working on: sx48.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr4\fedw0
working on: si1084.mfcc.csv
working on: si1653.mfcc.csv
working on: si1714.mfcc.csv
working on: sx184.mfcc.csv
working on: sx274.mfcc.csv
working on: sx364.mfcc.csv
working on: sx4.mfcc.csv
working on: sx94.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr4\fgjd0
working on: si1179.mfcc.csv
working on: si549.mfcc.csv
working on: si818.mfcc.csv
working on: sx189.mfcc.csv
working on: sx279.mfcc.csv
working on: sx369.mfcc.csv
working on: sx9.mfcc.csv
working on: sx99.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr4\fjlm0
working on: si1043.mfcc.csv
working on: si1673.mfcc.csv
working on: si2303.mfcc.csv
working on: sx143.mfcc.csv
working on: sx233.mfcc.csv
working on: sx323.mfcc.csv
working on: sx413.mfcc.csv
working on: sx53.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr4\fjmg0
working on: si1181.mfcc.csv
working on: si1811.mfcc.csv
working on: si551.mfcc.csv
working on: sx101.mfcc.csv
working on: sx11.mfcc.csv
working on: sx191.mfcc.csv
working on: sx281.mfcc.csv
working on: sx371.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr4\flbw0
working on: si1219.mfcc.csv
working on: si1849.mfcc.csv
working on: si2253.mfcc.csv
working on: sx139.mfcc.csv
working on: sx229.mfcc.csv
working on: sx319.mfcc.csv
working on: sx409.mfcc.csv
working on: sx49.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr4\flkd0
working on: si1369.mfcc.csv
working on: si739.mfcc.csv
working on: si894.mfcc.csv
working on: sx109.mfcc.csv
working on: sx19.mfcc.csv
working on: sx199.mfcc.csv
working on: sx289.mfcc.csv
working on: sx379.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr4\fmaf0
working on: si1459.mfcc.csv
working on: si2089.mfcc.csv
working on: si829.mfcc.csv
working on: sx109.mfcc.csv
working on: sx19.mfcc.csv
working on: sx199.mfcc.csv
working on: sx289.mfcc.csv
working on: sx379.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr4\fmcm0
working on: si1180.mfcc.csv
working on: si1810.mfcc.csv
working on: si550.mfcc.csv
working on: sx10.mfcc.csv
working on: sx100.mfcc.csv
working on: sx190.mfcc.csv
working on: sx280.mfcc.csv
working on: sx370.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr4\fnmr0
working on: si1399.mfcc.csv
working on: si2029.mfcc.csv
working on: si769.mfcc.csv
working on: sx139.mfcc.csv
working on: sx229.mfcc.csv
working on: sx319.mfcc.csv
working on: sx409.mfcc.csv
working on: sx49.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr4\frew0
working on: si1030.mfcc.csv
working on: si1280.mfcc.csv
working on: si1910.mfcc.csv
working on: sx110.mfcc.csv
working on: sx20.mfcc.csv
working on: sx200.mfcc.csv
working on: sx290.mfcc.csv
working on: sx380.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr4\frng0
working on: si1355.mfcc.csv
working on: si1985.mfcc.csv
working on: si725.mfcc.csv
working on: sx185.mfcc.csv
working on: sx275.mfcc.csv
working on: sx365.mfcc.csv
working on: sx5.mfcc.csv
working on: sx95.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr4\fsem0
working on: si1198.mfcc.csv
working on: si1828.mfcc.csv
working on: si568.mfcc.csv
working on: sx118.mfcc.csv
working on: sx208.mfcc.csv
working on: sx28.mfcc.csv
working on: sx298.mfcc.csv
working on: sx388.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr4\mbns0
working on: si1220.mfcc.csv
working on: si1850.mfcc.csv
working on: si590.mfcc.csv
working on: sx140.mfcc.csv
working on: sx230.mfcc.csv
working on: sx320.mfcc.csv
working on: sx410.mfcc.csv
working on: sx50.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr4\mdls0
working on: si1628.mfcc.csv
working on: si2258.mfcc.csv
working on: si998.mfcc.csv
working on: sx188.mfcc.csv
working on: sx278.mfcc.csv
working on: sx368.mfcc.csv
working on: sx8.mfcc.csv
working on: sx98.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr4\mdrm0
working on: si1013.mfcc.csv
working on: si1643.mfcc.csv
working on: si2273.mfcc.csv
working on: sx113.mfcc.csv
working on: sx203.mfcc.csv
working on: sx23.mfcc.csv
working on: sx293.mfcc.csv
working on: sx383.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr4\mgmm0
working on: si1129.mfcc.csv
working on: si1759.mfcc.csv
working on: si499.mfcc.csv
working on: sx139.mfcc.csv
working on: sx229.mfcc.csv
working on: sx319.mfcc.csv
working on: sx409.mfcc.csv
working on: sx49.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr4\mjdm1
working on: si1085.mfcc.csv
working on: si1715.mfcc.csv
working on: si455.mfcc.csv
working on: sx185.mfcc.csv
working on: sx275.mfcc.csv
working on: sx365.mfcc.csv
working on: sx5.mfcc.csv
working on: sx95.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr4\mjrf0
working on: si1114.mfcc.csv
working on: si2081.mfcc.csv
working on: si821.mfcc.csv
working on: sx101.mfcc.csv
working on: sx11.mfcc.csv
working on: sx191.mfcc.csv
working on: sx281.mfcc.csv
working on: sx371.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr4\mkcl0
working on: si1091.mfcc.csv
working on: si1721.mfcc.csv
working on: si461.mfcc.csv
working on: sx101.mfcc.csv
working on: sx11.mfcc.csv
working on: sx191.mfcc.csv
working on: sx281.mfcc.csv
working on: sx371.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr4\mljb0
working on: si1310.mfcc.csv
working on: si1940.mfcc.csv
working on: si680.mfcc.csv
working on: sx140.mfcc.csv
working on: sx230.mfcc.csv
working on: sx320.mfcc.csv
working on: sx410.mfcc.csv
working on: sx50.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr4\mlll0
working on: si1363.mfcc.csv
working on: si1993.mfcc.csv
working on: si733.mfcc.csv
working on: sx103.mfcc.csv
working on: sx13.mfcc.csv
working on: sx193.mfcc.csv
working on: sx283.mfcc.csv
working on: sx373.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr4\mpcs0
working on: si1359.mfcc.csv
working on: si1989.mfcc.csv
working on: si729.mfcc.csv
working on: sx189.mfcc.csv
working on: sx279.mfcc.csv
working on: sx369.mfcc.csv
working on: sx9.mfcc.csv
working on: sx99.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr4\mplb0
working on: si1394.mfcc.csv
working on: si2024.mfcc.csv
working on: si764.mfcc.csv
working on: sx134.mfcc.csv
working on: sx224.mfcc.csv
working on: sx314.mfcc.csv
working on: sx404.mfcc.csv
working on: sx44.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr4\mpwm0
working on: si1127.mfcc.csv
working on: si1757.mfcc.csv
working on: si2279.mfcc.csv
working on: sx137.mfcc.csv
working on: sx227.mfcc.csv
working on: sx317.mfcc.csv
working on: sx407.mfcc.csv
working on: sx47.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr4\mrko0
working on: si1397.mfcc.csv
working on: si2027.mfcc.csv
working on: si767.mfcc.csv
working on: sx137.mfcc.csv
working on: sx227.mfcc.csv
working on: sx317.mfcc.csv
working on: sx407.mfcc.csv
working on: sx47.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr4\mroa0
working on: si1307.mfcc.csv
working on: si1970.mfcc.csv
working on: si677.mfcc.csv
working on: sx137.mfcc.csv
working on: sx227.mfcc.csv
working on: sx317.mfcc.csv
working on: sx407.mfcc.csv
working on: sx47.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr4\mteb0
working on: si1133.mfcc.csv
working on: si2064.mfcc.csv
working on: si503.mfcc.csv
working on: sx143.mfcc.csv
working on: sx233.mfcc.csv
working on: sx323.mfcc.csv
working on: sx413.mfcc.csv
working on: sx53.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr4\mtls0
working on: si1370.mfcc.csv
working on: si2000.mfcc.csv
working on: si740.mfcc.csv
working on: sx110.mfcc.csv
working on: sx20.mfcc.csv
working on: sx200.mfcc.csv
working on: sx290.mfcc.csv
working on: sx380.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr5
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr5\fasw0
working on: si1550.mfcc.csv
working on: si2180.mfcc.csv
working on: si920.mfcc.csv
working on: sx110.mfcc.csv
working on: sx20.mfcc.csv
working on: sx200.mfcc.csv
working on: sx290.mfcc.csv
working on: sx380.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr5\fawf0
working on: si1000.mfcc.csv
working on: si1630.mfcc.csv
working on: si2260.mfcc.csv
working on: sx10.mfcc.csv
working on: sx100.mfcc.csv
working on: sx190.mfcc.csv
working on: sx280.mfcc.csv
working on: sx370.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr5\fcal1
working on: si1403.mfcc.csv
working on: si2033.mfcc.csv
working on: si773.mfcc.csv
working on: sx143.mfcc.csv
working on: sx233.mfcc.csv
working on: sx323.mfcc.csv
working on: sx413.mfcc.csv
working on: sx53.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr5\fgmd0
working on: si1943.mfcc.csv
working on: si2107.mfcc.csv
working on: si683.mfcc.csv
working on: sx143.mfcc.csv
working on: sx233.mfcc.csv
working on: sx323.mfcc.csv
working on: sx413.mfcc.csv
working on: sx53.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr5\fhes0
working on: si1109.mfcc.csv
working on: si1739.mfcc.csv
working on: si479.mfcc.csv
working on: sx119.mfcc.csv
working on: sx209.mfcc.csv
working on: sx29.mfcc.csv
working on: sx299.mfcc.csv
working on: sx389.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr5\fhew0
working on: si2023.mfcc.csv
working on: si690.mfcc.csv
working on: si763.mfcc.csv
working on: sx133.mfcc.csv
working on: sx223.mfcc.csv
working on: sx313.mfcc.csv
working on: sx403.mfcc.csv
working on: sx43.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr5\fjcs0
working on: si1309.mfcc.csv
working on: si1833.mfcc.csv
working on: si1939.mfcc.csv
working on: sx139.mfcc.csv
working on: sx229.mfcc.csv
working on: sx319.mfcc.csv
working on: sx409.mfcc.csv
working on: sx49.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr5\fjsa0
working on: si1379.mfcc.csv
working on: si2009.mfcc.csv
working on: si749.mfcc.csv
working on: sx119.mfcc.csv
working on: sx209.mfcc.csv
working on: sx29.mfcc.csv
working on: sx299.mfcc.csv
working on: sx389.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr5\fmah0
working on: si1289.mfcc.csv
working on: si1919.mfcc.csv
working on: si659.mfcc.csv
working on: sx119.mfcc.csv
working on: sx209.mfcc.csv
working on: sx29.mfcc.csv
working on: sx299.mfcc.csv
working on: sx389.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr5\fnlp0
working on: si1308.mfcc.csv
working on: si1938.mfcc.csv
working on: si678.mfcc.csv
working on: sx138.mfcc.csv
working on: sx228.mfcc.csv
working on: sx318.mfcc.csv
working on: sx408.mfcc.csv
working on: sx48.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr5\futb0
working on: si1204.mfcc.csv
working on: si1330.mfcc.csv
working on: si1834.mfcc.csv
working on: sx124.mfcc.csv
working on: sx214.mfcc.csv
working on: sx304.mfcc.csv
working on: sx34.mfcc.csv
working on: sx394.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr5\mahh0
working on: si1294.mfcc.csv
working on: si1924.mfcc.csv
working on: si664.mfcc.csv
working on: sx124.mfcc.csv
working on: sx214.mfcc.csv
working on: sx304.mfcc.csv
working on: sx34.mfcc.csv
working on: sx394.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr5\mbpm0
working on: si1577.mfcc.csv
working on: si1584.mfcc.csv
working on: si947.mfcc.csv
working on: sx137.mfcc.csv
working on: sx227.mfcc.csv
working on: sx317.mfcc.csv
working on: sx407.mfcc.csv
working on: sx47.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr5\mcmb0
working on: si1268.mfcc.csv
working on: si1898.mfcc.csv
working on: si638.mfcc.csv
working on: sx188.mfcc.csv
working on: sx278.mfcc.csv
working on: sx368.mfcc.csv
working on: sx8.mfcc.csv
working on: sx98.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr5\mcrc0
working on: si1092.mfcc.csv
working on: si1722.mfcc.csv
working on: si462.mfcc.csv
working on: sx102.mfcc.csv
working on: sx12.mfcc.csv
working on: sx192.mfcc.csv
working on: sx282.mfcc.csv
working on: sx372.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr5\mctt0
working on: si1144.mfcc.csv
working on: si2188.mfcc.csv
working on: si928.mfcc.csv
working on: sx118.mfcc.csv
working on: sx208.mfcc.csv
working on: sx28.mfcc.csv
working on: sx298.mfcc.csv
working on: sx388.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr5\mdac2
working on: si2259.mfcc.csv
working on: si560.mfcc.csv
working on: si999.mfcc.csv
working on: sx189.mfcc.csv
working on: sx279.mfcc.csv
working on: sx369.mfcc.csv
working on: sx9.mfcc.csv
working on: sx99.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr5\mdrb0
working on: si1174.mfcc.csv
working on: si2109.mfcc.csv
working on: si544.mfcc.csv
working on: sx184.mfcc.csv
working on: sx274.mfcc.csv
working on: sx364.mfcc.csv
working on: sx4.mfcc.csv
working on: sx94.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr5\mdwa0
working on: si1146.mfcc.csv
working on: si1445.mfcc.csv
working on: si519.mfcc.csv
working on: sx185.mfcc.csv
working on: sx275.mfcc.csv
working on: sx365.mfcc.csv
working on: sx5.mfcc.csv
working on: sx95.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr5\mdwk0
working on: si1540.mfcc.csv
working on: si2170.mfcc.csv
working on: si910.mfcc.csv
working on: sx10.mfcc.csv
working on: sx100.mfcc.csv
working on: sx190.mfcc.csv
working on: sx280.mfcc.csv
working on: sx370.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr5\mfgk0
working on: si1451.mfcc.csv
working on: si1744.mfcc.csv
working on: si484.mfcc.csv
working on: sx124.mfcc.csv
working on: sx214.mfcc.csv
working on: sx304.mfcc.csv
working on: sx34.mfcc.csv
working on: sx394.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr5\mklt0
working on: si1213.mfcc.csv
working on: si1843.mfcc.csv
working on: si583.mfcc.csv
working on: sx133.mfcc.csv
working on: sx223.mfcc.csv
working on: sx313.mfcc.csv
working on: sx403.mfcc.csv
working on: sx43.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr5\mlih0
working on: si1183.mfcc.csv
working on: si1813.mfcc.csv
working on: si553.mfcc.csv
working on: sx103.mfcc.csv
working on: sx13.mfcc.csv
working on: sx193.mfcc.csv
working on: sx283.mfcc.csv
working on: sx373.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr5\mrjm3
working on: si1448.mfcc.csv
working on: si1809.mfcc.csv
working on: si2078.mfcc.csv
working on: sx188.mfcc.csv
working on: sx278.mfcc.csv
working on: sx368.mfcc.csv
working on: sx8.mfcc.csv
working on: sx98.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr5\mrpp0
working on: si1184.mfcc.csv
working on: si1814.mfcc.csv
working on: si554.mfcc.csv
working on: sx104.mfcc.csv
working on: sx14.mfcc.csv
working on: sx194.mfcc.csv
working on: sx284.mfcc.csv
working on: sx374.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr5\mrrk0
working on: si1288.mfcc.csv
working on: si1716.mfcc.csv
working on: si1918.mfcc.csv
working on: sx118.mfcc.csv
working on: sx208.mfcc.csv
working on: sx28.mfcc.csv
working on: sx298.mfcc.csv
working on: sx388.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr5\mrws1
working on: si1130.mfcc.csv
working on: si1496.mfcc.csv
working on: si500.mfcc.csv
working on: sx140.mfcc.csv
working on: sx230.mfcc.csv
working on: sx320.mfcc.csv
working on: sx410.mfcc.csv
working on: sx50.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr5\msfh1
working on: si1270.mfcc.csv
working on: si1900.mfcc.csv
working on: si640.mfcc.csv
working on: sx10.mfcc.csv
working on: sx100.mfcc.csv
working on: sx190.mfcc.csv
working on: sx280.mfcc.csv
working on: sx370.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr6
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr6\fdrw0
working on: si1283.mfcc.csv
working on: si1423.mfcc.csv
working on: si653.mfcc.csv
working on: sx113.mfcc.csv
working on: sx203.mfcc.csv
working on: sx23.mfcc.csv
working on: sx293.mfcc.csv
working on: sx383.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr6\flnh0
working on: si1214.mfcc.csv
working on: si584.mfcc.csv
working on: si941.mfcc.csv
working on: sx134.mfcc.csv
working on: sx224.mfcc.csv
working on: sx314.mfcc.csv
working on: sx404.mfcc.csv
working on: sx44.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr6\fmgd0
working on: si1564.mfcc.csv
working on: si2194.mfcc.csv
working on: si934.mfcc.csv
working on: sx124.mfcc.csv
working on: sx214.mfcc.csv
working on: sx304.mfcc.csv
working on: sx34.mfcc.csv
working on: sx394.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr6\mcmj0
working on: si1094.mfcc.csv
working on: si464.mfcc.csv
working on: si602.mfcc.csv
working on: sx104.mfcc.csv
working on: sx14.mfcc.csv
working on: sx194.mfcc.csv
working on: sx284.mfcc.csv
working on: sx374.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr6\mdsc0
working on: si1038.mfcc.csv
working on: si2298.mfcc.csv
working on: si967.mfcc.csv
working on: sx138.mfcc.csv
working on: sx228.mfcc.csv
working on: sx318.mfcc.csv
working on: sx408.mfcc.csv
working on: sx48.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr6\mesd0
working on: si1002.mfcc.csv
working on: si1632.mfcc.csv
working on: si2262.mfcc.csv
working on: sx102.mfcc.csv
working on: sx12.mfcc.csv
working on: sx192.mfcc.csv
working on: sx282.mfcc.csv
working on: sx372.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr6\mjdh0
working on: si1354.mfcc.csv
working on: si1984.mfcc.csv
working on: si724.mfcc.csv
working on: sx184.mfcc.csv
working on: sx274.mfcc.csv
working on: sx364.mfcc.csv
working on: sx4.mfcc.csv
working on: sx94.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr6\mjfc0
working on: si1033.mfcc.csv
working on: si1663.mfcc.csv
working on: si2293.mfcc.csv
working on: sx133.mfcc.csv
working on: sx223.mfcc.csv
working on: sx313.mfcc.csv
working on: sx403.mfcc.csv
working on: sx43.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr6\mpam1
working on: si1029.mfcc.csv
working on: si1836.mfcc.csv
working on: si576.mfcc.csv
working on: sx126.mfcc.csv
working on: sx216.mfcc.csv
working on: sx306.mfcc.csv
working on: sx36.mfcc.csv
working on: sx396.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr6\mrjr0
working on: si1182.mfcc.csv
working on: si1812.mfcc.csv
working on: si2313.mfcc.csv
working on: sx102.mfcc.csv
working on: sx12.mfcc.csv
working on: sx192.mfcc.csv
working on: sx282.mfcc.csv
working on: sx372.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr6\mrjs0
working on: si1444.mfcc.csv
working on: si1523.mfcc.csv
working on: si2074.mfcc.csv
working on: sx184.mfcc.csv
working on: sx274.mfcc.csv
working on: sx364.mfcc.csv
working on: sx4.mfcc.csv
working on: sx94.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr7
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr7\fcau0
working on: si1037.mfcc.csv
working on: si1667.mfcc.csv
working on: si2297.mfcc.csv
working on: sx137.mfcc.csv
working on: sx227.mfcc.csv
working on: sx317.mfcc.csv
working on: sx407.mfcc.csv
working on: sx47.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr7\fdhc0
working on: si1559.mfcc.csv
working on: si2189.mfcc.csv
working on: si929.mfcc.csv
working on: sx119.mfcc.csv
working on: sx209.mfcc.csv
working on: sx29.mfcc.csv
working on: sx299.mfcc.csv
working on: sx389.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr7\fgwr0
working on: si1578.mfcc.csv
working on: si2208.mfcc.csv
working on: si948.mfcc.csv
working on: sx138.mfcc.csv
working on: sx228.mfcc.csv
working on: sx318.mfcc.csv
working on: sx408.mfcc.csv
working on: sx48.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr7\fisb0
working on: si1579.mfcc.csv
working on: si2209.mfcc.csv
working on: si949.mfcc.csv
working on: sx139.mfcc.csv
working on: sx229.mfcc.csv
working on: sx319.mfcc.csv
working on: sx409.mfcc.csv
working on: sx49.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr7\flas0
working on: si1026.mfcc.csv
working on: si1488.mfcc.csv
working on: si858.mfcc.csv
working on: sx138.mfcc.csv
working on: sx228.mfcc.csv
working on: sx318.mfcc.csv
working on: sx408.mfcc.csv
working on: sx48.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr7\fmml0
working on: si1040.mfcc.csv
working on: si1670.mfcc.csv
working on: si2300.mfcc.csv
working on: sx140.mfcc.csv
working on: sx230.mfcc.csv
working on: sx320.mfcc.csv
working on: sx410.mfcc.csv
working on: sx50.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr7\fsxa0
working on: si1108.mfcc.csv
working on: si1846.mfcc.csv
working on: si478.mfcc.csv
working on: sx118.mfcc.csv
working on: sx208.mfcc.csv
working on: sx28.mfcc.csv
working on: sx298.mfcc.csv
working on: sx388.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr7\ftlh0
working on: si1009.mfcc.csv
working on: si1390.mfcc.csv
working on: si1639.mfcc.csv
working on: sx109.mfcc.csv
working on: sx19.mfcc.csv
working on: sx199.mfcc.csv
working on: sx289.mfcc.csv
working on: sx379.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr7\mchh0
working on: si1004.mfcc.csv
working on: si1634.mfcc.csv
working on: si530.mfcc.csv
working on: sx104.mfcc.csv
working on: sx14.mfcc.csv
working on: sx194.mfcc.csv
working on: sx284.mfcc.csv
working on: sx374.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr7\mdlf0
working on: si1583.mfcc.csv
working on: si2213.mfcc.csv
working on: si953.mfcc.csv
working on: sx143.mfcc.csv
working on: sx233.mfcc.csv
working on: sx323.mfcc.csv
working on: sx413.mfcc.csv
working on: sx53.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr7\mdvc0
working on: si2174.mfcc.csv
working on: si2196.mfcc.csv
working on: si936.mfcc.csv
working on: sx126.mfcc.csv
working on: sx216.mfcc.csv
working on: sx306.mfcc.csv
working on: sx36.mfcc.csv
working on: sx396.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr7\mers0
working on: si1019.mfcc.csv
working on: si1649.mfcc.csv
working on: si497.mfcc.csv
working on: sx119.mfcc.csv
working on: sx209.mfcc.csv
working on: sx29.mfcc.csv
working on: sx299.mfcc.csv
working on: sx389.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr7\mgrt0
working on: si1450.mfcc.csv
working on: si2080.mfcc.csv
working on: si820.mfcc.csv
working on: sx10.mfcc.csv
working on: sx100.mfcc.csv
working on: sx190.mfcc.csv
working on: sx280.mfcc.csv
working on: sx370.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr7\mkdr0
working on: si1273.mfcc.csv
working on: si1903.mfcc.csv
working on: si643.mfcc.csv
working on: sx103.mfcc.csv
working on: sx13.mfcc.csv
working on: sx193.mfcc.csv
working on: sx283.mfcc.csv
working on: sx373.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr7\mkjl0
working on: si1100.mfcc.csv
working on: si1730.mfcc.csv
working on: si470.mfcc.csv
working on: sx110.mfcc.csv
working on: sx20.mfcc.csv
working on: sx200.mfcc.csv
working on: sx290.mfcc.csv
working on: sx380.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr7\mnjm0
working on: si1580.mfcc.csv
working on: si2210.mfcc.csv
working on: si950.mfcc.csv
working on: sx140.mfcc.csv
working on: sx230.mfcc.csv
working on: sx320.mfcc.csv
working on: sx410.mfcc.csv
working on: sx50.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr7\mnls0
working on: si1483.mfcc.csv
working on: si1610.mfcc.csv
working on: si853.mfcc.csv
working on: sx133.mfcc.csv
working on: sx223.mfcc.csv
working on: sx313.mfcc.csv
working on: sx403.mfcc.csv
working on: sx43.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr7\mpab0
working on: si1103.mfcc.csv
working on: si1128.mfcc.csv
working on: si498.mfcc.csv
working on: sx138.mfcc.csv
working on: sx228.mfcc.csv
working on: sx318.mfcc.csv
working on: sx408.mfcc.csv
working on: sx48.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr7\mrcs0
working on: si1223.mfcc.csv
working on: si1853.mfcc.csv
working on: si593.mfcc.csv
working on: sx143.mfcc.csv
working on: sx233.mfcc.csv
working on: sx323.mfcc.csv
working on: sx413.mfcc.csv
working on: sx53.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr7\mrjm4
working on: si1489.mfcc.csv
working on: si2119.mfcc.csv
working on: si859.mfcc.csv
working on: sx139.mfcc.csv
working on: sx229.mfcc.csv
working on: sx319.mfcc.csv
working on: sx409.mfcc.csv
working on: sx49.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr7\mrms1
working on: si1487.mfcc.csv
working on: si2117.mfcc.csv
working on: si857.mfcc.csv
working on: sx137.mfcc.csv
working on: sx227.mfcc.csv
working on: sx317.mfcc.csv
working on: sx407.mfcc.csv
working on: sx47.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr7\mrpc0
working on: si1753.mfcc.csv
working on: si493.mfcc.csv
working on: si933.mfcc.csv
working on: sx133.mfcc.csv
working on: sx223.mfcc.csv
working on: sx313.mfcc.csv
working on: sx403.mfcc.csv
working on: sx43.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr7\mtwh0
working on: si1190.mfcc.csv
working on: si1629.mfcc.csv
working on: si1820.mfcc.csv
working on: sx110.mfcc.csv
working on: sx20.mfcc.csv
working on: sx200.mfcc.csv
working on: sx290.mfcc.csv
working on: sx380.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr8
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr8\fcmh1
working on: si1493.mfcc.csv
working on: si2123.mfcc.csv
working on: si863.mfcc.csv
working on: sx143.mfcc.csv
working on: sx233.mfcc.csv
working on: sx323.mfcc.csv
working on: sx413.mfcc.csv
working on: sx53.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr8\fjsj0
working on: si1484.mfcc.csv
working on: si2114.mfcc.csv
working on: si854.mfcc.csv
working on: sx134.mfcc.csv
working on: sx224.mfcc.csv
working on: sx314.mfcc.csv
working on: sx404.mfcc.csv
working on: sx44.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr8\fmld0
working on: si2185.mfcc.csv
working on: si822.mfcc.csv
working on: si925.mfcc.csv
working on: sx115.mfcc.csv
working on: sx205.mfcc.csv
working on: sx25.mfcc.csv
working on: sx295.mfcc.csv
working on: sx385.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr8\majc0
working on: si1946.mfcc.csv
working on: si2095.mfcc.csv
working on: si835.mfcc.csv
working on: sx115.mfcc.csv
working on: sx205.mfcc.csv
working on: sx25.mfcc.csv
working on: sx295.mfcc.csv
working on: sx385.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr8\mdaw1
working on: si1453.mfcc.csv
working on: si2083.mfcc.csv
working on: si823.mfcc.csv
working on: sx103.mfcc.csv
working on: sx13.mfcc.csv
working on: sx193.mfcc.csv
working on: sx283.mfcc.csv
working on: sx373.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr8\mjln0
working on: si1449.mfcc.csv
working on: si2079.mfcc.csv
working on: si819.mfcc.csv
working on: sx189.mfcc.csv
working on: sx279.mfcc.csv
working on: sx369.mfcc.csv
working on: sx9.mfcc.csv
working on: sx99.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr8\mjtc0
working on: si1460.mfcc.csv
working on: si2090.mfcc.csv
working on: si830.mfcc.csv
working on: sx110.mfcc.csv
working on: sx20.mfcc.csv
working on: sx200.mfcc.csv
working on: sx290.mfcc.csv
working on: sx380.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr8\mjth0
working on: si1296.mfcc.csv
working on: si1926.mfcc.csv
working on: si666.mfcc.csv
working on: sx126.mfcc.csv
working on: sx216.mfcc.csv
working on: sx306.mfcc.csv
working on: sx36.mfcc.csv
working on: sx396.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr8\mpam0
working on: si1189.mfcc.csv
working on: si1819.mfcc.csv
working on: si1961.mfcc.csv
working on: sx109.mfcc.csv
working on: sx19.mfcc.csv
working on: sx199.mfcc.csv
working on: sx289.mfcc.csv
working on: sx379.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr8\mres0
working on: si1217.mfcc.csv
working on: si1847.mfcc.csv
working on: si587.mfcc.csv
working on: sx137.mfcc.csv
working on: sx227.mfcc.csv
working on: sx317.mfcc.csv
working on: sx407.mfcc.csv
working on: sx47.mfcc.csv
working in path : C:\Users\FG\Desktop\PhD\Research\Reservoirs\datasets\TIMIT-MFCCs\test\dr8\mslb0
working on: si1193.mfcc.csv
working on: si1823.mfcc.csv
working on: si563.mfcc.csv
working on: sx113.mfcc.csv
working on: sx203.mfcc.csv
working on: sx23.mfcc.csv
working on: sx293.mfcc.csv
working on: sx383.mfcc.csv
In [9]:
# average number of observations for each phone
np.mean([len(phn_list) for phn_list in test_phone_obs_dict.values()])
Out[9]:
6736.3934426229507
In [10]:
# compute log probs
for phone in phone_list:
if phone in agmm_dict and phone in ugmm_dict:
print 'Phone:', phone
print 'adapted gmm average log prob:', np.mean(agmm_dict[phone].score(test_phone_obs_dict[phone]))
print 'unadapted gmm average log prob:', np.mean(ugmm_dict[phone].score(test_phone_obs_dict[phone]))
else:
print 'no model for', phone
Phone: aa
adapted gmm average log prob: -94.6676338505
unadapted gmm average log prob: -94.6951896424
Phone: ae
adapted gmm average log prob: -93.7180105925
unadapted gmm average log prob: -93.7776945385
Phone: ah
adapted gmm average log prob: -99.6445498181
unadapted gmm average log prob: -99.6578306456
Phone: ao
adapted gmm average log prob: -94.2672854013
unadapted gmm average log prob: -94.2499251818
Phone: aw
adapted gmm average log prob: -95.6111993063
unadapted gmm average log prob: -95.6292778689
Phone: ax
adapted gmm average log prob: -103.612528751
unadapted gmm average log prob: -103.589686954
Phone: ax-h
adapted gmm average log prob: -140.503375764
unadapted gmm average log prob: -140.04682134
Phone: axr
adapted gmm average log prob: -99.8871014083
unadapted gmm average log prob: -99.8717012764
Phone: ay
adapted gmm average log prob: -92.5477107148
unadapted gmm average log prob: -92.5404881158
Phone: b
adapted gmm average log prob: -109.246722307
unadapted gmm average log prob: -109.172143871
Phone: bcl
adapted gmm average log prob: -99.5732988745
unadapted gmm average log prob: -99.5196576946
Phone: ch
adapted gmm average log prob: -98.1577022619
unadapted gmm average log prob: -98.1194634839
Phone: d
adapted gmm average log prob: -105.542184742
unadapted gmm average log prob: -105.522234604
Phone: dcl
adapted gmm average log prob: -102.8241549
unadapted gmm average log prob: -102.811765916
Phone: dh
adapted gmm average log prob: -103.652669826
unadapted gmm average log prob: -103.495610558
Phone: dx
adapted gmm average log prob: -105.187731953
unadapted gmm average log prob: -105.440116737
Phone: eh
adapted gmm average log prob: -97.5560969159
unadapted gmm average log prob: -97.5325666402
Phone: el
adapted gmm average log prob: -101.246407995
unadapted gmm average log prob: -101.465603834
Phone: em
adapted gmm average log prob: -298.035458494
unadapted gmm average log prob: -281.140452129
Phone: en
adapted gmm average log prob: -108.133332799
unadapted gmm average log prob: -107.95807289
no model for eng
Phone: epi
adapted gmm average log prob: -111.20468361
unadapted gmm average log prob: -111.169687087
Phone: er
adapted gmm average log prob: -96.273598498
unadapted gmm average log prob: -96.3214157543
Phone: ey
adapted gmm average log prob: -93.301945304
unadapted gmm average log prob: -93.2960224853
Phone: f
adapted gmm average log prob: -93.2228994378
unadapted gmm average log prob: -93.2490028066
Phone: g
adapted gmm average log prob: -114.230947937
unadapted gmm average log prob: -114.360710655
Phone: gcl
adapted gmm average log prob: -107.412266081
unadapted gmm average log prob: -107.332388357
Phone: h#
adapted gmm average log prob: -87.731614805
unadapted gmm average log prob: -87.7560868368
Phone: hh
adapted gmm average log prob: -103.408181588
unadapted gmm average log prob: -103.330274288
Phone: hv
adapted gmm average log prob: -104.357811765
unadapted gmm average log prob: -104.351059997
Phone: ih
adapted gmm average log prob: -99.0012659647
unadapted gmm average log prob: -99.0214219618
Phone: ix
adapted gmm average log prob: -102.370487848
unadapted gmm average log prob: -102.356424284
Phone: iy
adapted gmm average log prob: -95.5688270851
unadapted gmm average log prob: -95.5661425723
Phone: jh
adapted gmm average log prob: -99.9694568565
unadapted gmm average log prob: -99.8426955408
Phone: k
adapted gmm average log prob: -103.013340287
unadapted gmm average log prob: -103.017875859
Phone: kcl
adapted gmm average log prob: -102.843775998
unadapted gmm average log prob: -102.898494312
Phone: l
adapted gmm average log prob: -100.812762225
unadapted gmm average log prob: -100.789368988
Phone: m
adapted gmm average log prob: -100.504387049
unadapted gmm average log prob: -100.477441937
Phone: n
adapted gmm average log prob: -102.784540653
unadapted gmm average log prob: -102.798950322
Phone: ng
adapted gmm average log prob: -105.314540874
unadapted gmm average log prob: -105.285250124
Phone: nx
adapted gmm average log prob: -116.754491367
unadapted gmm average log prob: -116.443415252
Phone: ow
adapted gmm average log prob: -96.5594994888
unadapted gmm average log prob: -96.4424196534
Phone: oy
adapted gmm average log prob: -102.386495697
unadapted gmm average log prob: -102.139988657
Phone: p
adapted gmm average log prob: -103.014339664
unadapted gmm average log prob: -103.09367267
Phone: pau
adapted gmm average log prob: -96.0504327871
unadapted gmm average log prob: -96.0434730783
Phone: pcl
adapted gmm average log prob: -95.7127425619
unadapted gmm average log prob: -95.6764891426
Phone: q
adapted gmm average log prob: -105.587142159
unadapted gmm average log prob: -105.486289858
Phone: r
adapted gmm average log prob: -99.4689887031
unadapted gmm average log prob: -99.4769816798
Phone: s
adapted gmm average log prob: -93.5358488124
unadapted gmm average log prob: -93.6127023771
Phone: sh
adapted gmm average log prob: -92.2979239822
unadapted gmm average log prob: -92.2684222682
Phone: t
adapted gmm average log prob: -101.07425127
unadapted gmm average log prob: -101.152446462
Phone: tcl
adapted gmm average log prob: -100.758872611
unadapted gmm average log prob: -100.78170859
Phone: th
adapted gmm average log prob: -101.036098264
unadapted gmm average log prob: -101.069316381
Phone: uh
adapted gmm average log prob: -112.295011488
unadapted gmm average log prob: -112.25012375
Phone: uw
adapted gmm average log prob: -104.959178419
unadapted gmm average log prob: -104.762234582
Phone: ux
adapted gmm average log prob: -97.2767908202
unadapted gmm average log prob: -97.3107700735
Phone: v
adapted gmm average log prob: -99.4826350722
unadapted gmm average log prob: -99.4845758706
Phone: w
adapted gmm average log prob: -98.8454553318
unadapted gmm average log prob: -98.789530333
Phone: y
adapted gmm average log prob: -100.533048438
unadapted gmm average log prob: -100.960683015
Phone: z
adapted gmm average log prob: -97.4034226455
unadapted gmm average log prob: -97.3834223213
Phone: zh
adapted gmm average log prob: -144.536256424
unadapted gmm average log prob: -138.088549724
In [11]:
# average difference
agmm_log_prob_avgs = [np.mean(agmm_dict[phone].score(test_phone_obs_dict[phone])) for phone in agmm_dict.keys()]
ugmm_log_prob_avgs = [np.mean(ugmm_dict[phone].score(test_phone_obs_dict[phone])) for phone in ugmm_dict.keys()]
[-94.667633850476321, -101.24640799472776, -98.157702261933892, -144.53625642445795, -97.556096915857495, -102.37048784843427, -99.644549818145691, -96.559499488760849, -94.267285401270982, -99.001265964677827, -100.75887261063575, -108.1333327992691, -93.301945303955819, -95.611199306312969, -103.61252875106683, -92.5477107147601, -93.718010592537183, -96.2735984979591, -96.050432787057787, -107.41226608107513, -105.31454087438503, -116.75449136653056, -95.568827085070424, -99.468988703149648, -95.712742561909266, -101.07425127023319, -99.887101408280216, -102.8241549004379, -101.03609826423182, -103.65266982580231, -102.84377599762746, -111.20468361042199, -104.35781176497116, -100.50438704896845, -102.38649569652617, -103.40818158763052, -99.969456856520139, -105.18773195327002, -140.50337576367789, -298.03545849392759, -105.54218474237244, -99.573298874527865, -109.24672230712537, -97.276790820205036, -114.23094793687656, -93.222899437848199, -103.01334028716332, -87.731614804952784, -100.81276222462053, -102.78454065321613, -105.58714215890173, -103.01433966441299, -93.535848812395173, -92.297923982240135, -112.29501148757963, -98.845455331788457, -99.482635072186099, -100.53304843832667, -97.403422645510219, -104.9591784191025] [-94.695189642392819, -101.4656038341226, -98.119463483890542, -138.08854972379854, -97.532566640197032, -102.35642428353012, -99.657830645573895, -96.44241965342475, -94.249925181816451, -99.021421961785919, -100.78170858955896, -107.95807288954406, -93.296022485269688, -95.629277868922856, -103.58968695422833, -92.540488115821177, -93.777694538466775, -96.321415754276785, -96.043473078343112, -107.33238835707444, -105.28525012409965, -116.44341525179576, -95.566142572266159, -99.476981679832633, -95.676489142639852, -101.15244646168463, -99.87170127641096, -102.81176591567463, -101.06931638129578, -103.4956105575552, -102.89849431201964, -111.16968708679396, -104.35105999711882, -100.47744193682054, -102.13998865690303, -103.33027428763049, -99.842695540784035, -105.44011673668702, -140.04682133993705, -281.14045212932859, -105.52223460421976, -99.519657694642191, -109.17214387129198, -97.310770073523628, -114.36071065456338, -93.249002806578545, -103.01787585946646, -87.75608683682951, -100.78936898779322, -102.79895032172912, -105.48628985790097, -103.09367266952586, -93.612702377055527, -92.268422268198591, -112.25012374973618, -98.789530332963523, -99.484575870609291, -100.96068301480474, -97.383422321303343, -104.76223458162301]
In [12]:
print [a>b for (a,b) in zip(agmm_log_prob_avgs, ugmm_log_prob_avgs)].count(True)
print [a>b for (a,b) in zip(agmm_log_prob_avgs, ugmm_log_prob_avgs)].count(False)
23
37
In [15]:
# checking
agmm_log_prob_avgs_2 = []
ugmm_log_prob_avgs_2 = []
improvements = 0
deteriorations = 0
for phone in phone_list:
if phone in agmm_dict and phone in ugmm_dict:
print 'Phone:', phone
v1 = np.mean(agmm_dict[phone].score(test_phone_obs_dict[phone]))
v2 = np.mean(ugmm_dict[phone].score(test_phone_obs_dict[phone]))
agmm_log_prob_avgs_2.append(v1)
ugmm_log_prob_avgs_2.append(v2)
if v1 > v2:
improvements += 1
else:
deteriorations +=1
else:
print 'no model for', phone
Phone: aa
Phone: ae
Phone: ah
Phone: ao
Phone: aw
Phone: ax
Phone: ax-h
Phone: axr
Phone: ay
Phone: b
Phone: bcl
Phone: ch
Phone: d
Phone: dcl
Phone: dh
Phone: dx
Phone: eh
Phone: el
Phone: em
Phone: en
no model for eng
Phone: epi
Phone: er
Phone: ey
Phone: f
Phone: g
Phone: gcl
Phone: h#
Phone: hh
Phone: hv
Phone: ih
Phone: ix
Phone: iy
Phone: jh
Phone: k
Phone: kcl
Phone: l
Phone: m
Phone: n
Phone: ng
Phone: nx
Phone: ow
Phone: oy
Phone: p
Phone: pau
Phone: pcl
Phone: q
Phone: r
Phone: s
Phone: sh
Phone: t
Phone: tcl
Phone: th
Phone: uh
Phone: uw
Phone: ux
Phone: v
Phone: w
Phone: y
Phone: z
Phone: zh
In [16]:
print improvements, deteriorations
23 37
In [ ]:
Content source: grezesf/Research
Similar notebooks: