(ARMNMPAPLC:)
2024 spiral.ok.ubc.ca An auto regression model for generating audio samples given a training signal. Takes audio file as input and outputs a generated audio file
numpy sklearn
python arPlc.py wavFile.wav
train = song.getFrames(0, 88200)
ar = AR(22500)
test = song.getFrames(1, 1024)
how many samples to generate, monte carlo sim depth (the MC sim blows out samples, to is disabled in code-leave as one)
res = ar.predict(np.array(test), 44100, 1)