I am more or less a Python novice, working on an audio analog to this evolutionary Mona Lisa experiment.
The below code is intended to:
- Read a given .wav file into a NumPy array.
- Detect 'zero crossings' in the waveform, i.e. when an array element changes sign. Split the array into a nested list of waveform 'chunks' at these points.
- Separate positive from negative chunks, then shuffle these chunks and recombine them into a NumPy array, alternating positive with negative. I can't use random.shuffle(), since the list has well over 2000 elements.
- Compare the 'fitness' of the shuffled array with the original sample, defined as the square of the difference between the shuffled array and original sample.
Ultimately, I'll add replication, mutation, and selection, but for now there's a problem with my fitness function. The split, shuffled, and recombined array is of different dimensions than the original input, resulting in the following error:
$ ValueError: operands could not be broadcast together with shapes (1273382) (1138213)
The dimensions of the second array vary each time I run the program, but are always around 1138000-1145000. I seem to have lost a few chunks during the split, shuffle, and recombination steps, and I suspect that I'm using a list comprehension incorrectly somewhere in step 3, but I can't quite figure out where or why. What's gone wrong?
# Import scipy audio tools, numpy, and randomization tools
import scipy
from scipy.io import wavfile
import numpy
from random import shuffle, randint
# Read a wav file data array, detect zero crossings, split at zero crossings, and return a nested list.
def process_wav(input):
# Assign the wavefile data array to a variable.
wavdata = input[1]
# Detect zero crossings, i.e. changes in sign in the waveform data. The line below returns an array of the indices of elements after which a zero crossing occurs.
zerocrossings = numpy.where(numpy.diff(numpy.sign(wavdata)))[0]
# Increment each element in the array by one. Otherwise, the indices are off.
zerocrossings = numpy.add(numpy.ones(zerocrossings.size, zerocrossings.dtype), zerocrossings)
wavdatalist = wavdata.tolist()
zerocrossingslist = zerocrossings.tolist()
# Split the list at zero crossings. The function below splits a list at the given indices.
def partition(alist, indices):
return [alist[i:j] for i, j in zip([0]+indices, indices+[None])]
return partition(wavdatalist, zerocrossingslist)
# Accept a list as input, separate into positive and negative chunks, shuffle, and return a shuffled nested list
def shuffle_wav(list):
# Separate waveform chunks into positive and negative lists.
positivechunks = []
negativechunks = []
for chunk in list:
if chunk[0] < 0:
negativechunks.append(chunk)
elif chunk[0] > 0:
positivechunks.append(chunk)
elif chunk[0] == 0:
positivechunks.append(chunk)
# Shuffle the chunks and append them to a list, alternating positive with negative.
shuffledchunks = []
while len(positivechunks) >= 0 and len(negativechunks) > 0:
currentpositivechunk = positivechunks.pop(randint(0, len(positivechunks)-1))
shuffledchunks.append(currentpositivechunk)
currentnegativechunk = negativechunks.pop(randint(0, len(negativechunks)-1))
shuffledchunks.append(currentnegativechunk)
return [chunk for sublist in shuffledchunks for chunk in sublist]
def get_fitness(array, target):
return numpy.square(numpy.subtract(target, array))
# Read a sample wav file. The wavfile function returns a tuple of the file's sample rate and data as a numpy array, to be passed to the process_wav() function.
input = scipy.io.wavfile.read('sample.wav')
wavchunks = process_wav(input)
shuffledlist = shuffle_wav(wavchunks)
output = numpy.array(shuffledlist, dtype='int16')
print get_fitness(output, input[1])
scipy.io.wavfile.write('output.wav', 44100, output)
EDIT: Here's the full traceback:
Traceback (most recent call last):
File "evowav.py", line 64, in <module>
print get_fitness(output, input[1])
File "evowav.py", line 56, in get_fitness
return numpy.square(numpy.subtract(target, array))
ValueError: operands could not be broadcast together with shapes (1273382) (1136678)`
numpy.square(numpy.subtract(target, array)). It's much more pythonic (and exactly equivalent) to use(target - array)**2Similarly,zerocrossings = numpy.add(numpy.ones(zerocrossings.size, zerocrossings.dtype), zerocrossings)is equivalent tozerocrossings += 1. (Actually the latter is slightly more efficient, as it will modify the array in-place.) – Joe Kington Jan 8 '12 at 15:54