Skip to content

Commit

Permalink
BUG: import numpy.matlib in features/tachibana.py
Browse files Browse the repository at this point in the history
fixes `AttributeError: module 'numpy' has no attribute 'matlib'`

but note this module has been deprecated,
and we should switch to `np.tile`.
See #92
  • Loading branch information
NickleDave committed Apr 10, 2021
1 parent 1de2e77 commit 8cd5a09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hvc/features/tachibana.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
.. [2] Peeters, Geoffroy. "A large set of audio features for sound description (
and classification) in the CUIDADO project." (2004).
"""

import numpy as np
import numpy.matlib


def duration(syllable):
Expand Down

0 comments on commit 8cd5a09

Please sign in to comment.