-
Notifications
You must be signed in to change notification settings - Fork 206
Right now this is a loose collection of some Q&A:
Q: I get an ImportError: cannot import name BarStateSpace
A: Most probably you have an old compiled version of the beats_hmm
module around. Delete all beats_hmm.*
files except beats_hmm.py
.
Q: I get another ImportError
A: Set your PYTHONPATH
and export it, e.g. export PYTHONPATH=/path/to/madmom/
.
Q: Why does it crash on Mac OS X?
A: You most probably have numpy and scipy linked against the Accelerate Framework. Rebuild these modules to be linked against ATLAS to gain multi-threaded support.
Q: I get out of bounds errors, tests fails or other weird errors
A: Make sure that you have recent numpy, scipy and cython versions installed and that your compiled modules are up to date. Update them with pip install --upgrade numpy scipy cython
and python setup.py build_ext --inplace
.