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
After setting up a conda environment using conda env create -f environment_macos.yml I am unable to run the notebooks since the basis functions module is not found.
I won't have time to work on this issue until later this year, so I would suggest either using the main basismixer repository (in the branch update_training), or using older versions of the packages (in particular, partitura and basismixer).
Hi @eoinroe! Sorry for the late reply (I've been out of office this week). The notebooks should work with the oldest version of partitura and basismixer (from late 2019), since that is what we used for a tutorial for ISMIR back then (but then you might need to see the compatibility with other packages).
If you want, we could have a chat sometime in the next two weeks, and I can help you setup a version of the code (you can write me to my JKU email: [email protected] and we can coordinate a time for a Zoom call).
After setting up a conda environment using
conda env create -f environment_macos.yml
I am unable to run the notebooks since the basis functions module is not found.ModuleNotFoundError Traceback (most recent call last)
Cell In[1], line 2
1 get_ipython().run_line_magic('matplotlib', 'notebook')
----> 2 from helper import init_dataset, performance_player, show_score
3 init_dataset()
File ~/PycharmProjects/basismixer-notebooks/helper/init.py:3
1 from helper.visualization import performance_player, show_score
2 from helper.data import init_dataset
----> 3 from helper.rendering import load_model, compute_basis_from_xml, render_midi
4 from helper.plotting import plot_basis
File ~/PycharmProjects/basismixer-notebooks/helper/rendering.py:17
15 from basismixer.predictive_models import FullPredictiveModel, construct_model
16 from basismixer.performance_codec import get_performance_codec
---> 17 from basismixer.basisfunctions import make_basis
19 from helper.predictions import setup_output_directory
21 LOGGER = logging.getLogger(name)
ModuleNotFoundError: No module named 'basismixer.basisfunctions'
The text was updated successfully, but these errors were encountered: