sourceseparation_misc
sourceseparation_misc copied to clipboard
The function tset puzzled me.
The function tset in timit_utilities.py puzzled me. Why you choice the indices of the minimum values to get the test file? I don't know why? Is there some mathematical explain?
I guess you are referring to these lines:
d = array( [[abs(t1-t2) for t1 in l1] for t2 in l2])
i = argmin( d)
What it is doing is, it finds to recordings that match the best in terms of length, and we use those as test mixtures.