pystoi
pystoi copied to clipboard
Python implementation of the Short Term Objective Intelligibility measure
Hi, I'm running stoi(signal1, signal2, sr, extended=True) where signal1 and signal2 are both numpy.ndarray and I'm getting the following future warning: /usr/lib/python3/dist-packages/scipy/signal/signaltools.py:2383: FutureWarning: Using a non-tuple sequence for multidimensional indexing...
Allow users to pass batches of audio waveforms, vectorising the relevant code. This adds flexibility to the code and also makes it faster to run on batched data. There are...
Currently `pystoi.stoi` doesn't support small inputs, but throws a non indicative error: ``` In [28]: pystoi.stoi(np.arange(100), np.arange(100), 32000, extended=False) --------------------------------------------------------------------------- AxisError Traceback (most recent call last) in ----> 1 pystoi.stoi(np.arange(100),...
Hi, Recently I was trying to evaluate some signals by calculating the stoi of each signals with this package. I used `pystoi.stoi.stoi `function to calculate the stoi. When I input...