sungheonpark
sungheonpark
Hi, I encountered the same problem, and changed the following line of code in evaluation_utils.py data[key] = np.array(map(float, value.split(' '))) to data[key] = np.array(list(map(float, value.split(' ')))) I also changed Counter(inds).iteritems()...
Hi Lenny, You can refer to the evaluation code to perform separation task on your own wav files. You can use `librosa.load` function to load wav files, and most part...
I don't have much experience about getting the live streaming data. You may find some example python codes dealing with live streaming from the Internet.
When the spectrogram is fed into the network, it is divided into smaller chunks. The spectrogram of a single file has size of 512 x (length of the spectrogram). The...