Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 717 Bytes

README.md

File metadata and controls

22 lines (16 loc) · 717 Bytes

midi-vq-models

Implementation of Vector Quantized models for MIDI data.

Code Style

This repository uses pre-commit hooks with forced python formatting (black, flake8, and isort):

pip install pre-commit
pre-commit install

Whenever you execute git commit the files altered / added within the commit will be checked and corrected. black and isort can modify files locally - if that happens you have to git add them again. You might also be prompted to introduce some fixes manually.

To run the hooks against all files without running git commit:

pre-commit run --all-files