You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in transform2bark() in rp_extract.py there is this warning since numpy 1.11:
# VisibleDeprecationWarning: boolean index did not match indexed array along dimension 0; dimension is 1024 but corresponding boolean dimension is 513
matrix_out[b] = np.sum(matrix[((freq_axis >= barks[b]) & (freq_axis < barks[b+1]))], axis=0)
Since numpy 1.13 it became an error.
This is because the matrix on the right hand side does not match the matrix to be assigned.
(so far it has been assigned implicitly)
It should be thouroughly checked what is assigned before this code can be fixed.
The text was updated successfully, but these errors were encountered:
in transform2bark() in rp_extract.py there is this warning since numpy 1.11:
Since numpy 1.13 it became an error.
This is because the matrix on the right hand side does not match the matrix to be assigned.
(so far it has been assigned implicitly)
It should be thouroughly checked what is assigned before this code can be fixed.
The text was updated successfully, but these errors were encountered: