├── .coveragerc ├── .gitignore ├── .travis.yml ├── .travis_dependencies.sh ├── LICENSE ├── README.md ├── crema ├── __init__.py ├── data.py ├── dsp.py ├── model │ ├── __init__.py │ ├── init.py │ ├── layers.py │ ├── modules.py │ └── ops.py ├── pre.py ├── task │ ├── __init__.py │ ├── base.py │ ├── chord.py │ ├── event.py │ ├── regression.py │ └── tags.py └── version.py ├── model ├── cal500_module.yaml ├── cf_module.yaml ├── chord_module.yaml ├── medleydb_instrument_module.yaml └── shared_octave.yaml ├── notebooks ├── Billboard notebook.ipynb ├── CF [0] - target construction.ipynb └── CF [1] - jams construction.ipynb ├── scripts ├── index_cal500.py ├── index_isophonics.py ├── index_medleydb.py ├── index_msd.py └── medley_artist_index.json ├── setup.py └── tests ├── data ├── test1_44100.jams ├── test1_44100.wav ├── test_index.csv └── test_index2.csv ├── test_data.py ├── test_layers.py ├── test_model.py ├── test_pre.py └── test_task.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcfee/crema-features/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcfee/crema-features/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcfee/crema-features/HEAD/.travis.yml -------------------------------------------------------------------------------- /.travis_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcfee/crema-features/HEAD/.travis_dependencies.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcfee/crema-features/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcfee/crema-features/HEAD/README.md -------------------------------------------------------------------------------- /crema/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcfee/crema-features/HEAD/crema/__init__.py -------------------------------------------------------------------------------- /crema/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcfee/crema-features/HEAD/crema/data.py -------------------------------------------------------------------------------- /crema/dsp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcfee/crema-features/HEAD/crema/dsp.py -------------------------------------------------------------------------------- /crema/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcfee/crema-features/HEAD/crema/model/__init__.py -------------------------------------------------------------------------------- /crema/model/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcfee/crema-features/HEAD/crema/model/init.py -------------------------------------------------------------------------------- /crema/model/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcfee/crema-features/HEAD/crema/model/layers.py -------------------------------------------------------------------------------- /crema/model/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcfee/crema-features/HEAD/crema/model/modules.py -------------------------------------------------------------------------------- /crema/model/ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcfee/crema-features/HEAD/crema/model/ops.py -------------------------------------------------------------------------------- /crema/pre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcfee/crema-features/HEAD/crema/pre.py -------------------------------------------------------------------------------- /crema/task/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcfee/crema-features/HEAD/crema/task/__init__.py -------------------------------------------------------------------------------- /crema/task/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcfee/crema-features/HEAD/crema/task/base.py -------------------------------------------------------------------------------- /crema/task/chord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcfee/crema-features/HEAD/crema/task/chord.py -------------------------------------------------------------------------------- /crema/task/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcfee/crema-features/HEAD/crema/task/event.py -------------------------------------------------------------------------------- /crema/task/regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcfee/crema-features/HEAD/crema/task/regression.py -------------------------------------------------------------------------------- /crema/task/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcfee/crema-features/HEAD/crema/task/tags.py -------------------------------------------------------------------------------- /crema/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcfee/crema-features/HEAD/crema/version.py -------------------------------------------------------------------------------- /model/cal500_module.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcfee/crema-features/HEAD/model/cal500_module.yaml -------------------------------------------------------------------------------- /model/cf_module.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcfee/crema-features/HEAD/model/cf_module.yaml -------------------------------------------------------------------------------- /model/chord_module.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcfee/crema-features/HEAD/model/chord_module.yaml -------------------------------------------------------------------------------- /model/medleydb_instrument_module.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcfee/crema-features/HEAD/model/medleydb_instrument_module.yaml -------------------------------------------------------------------------------- /model/shared_octave.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcfee/crema-features/HEAD/model/shared_octave.yaml -------------------------------------------------------------------------------- /notebooks/Billboard notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcfee/crema-features/HEAD/notebooks/Billboard notebook.ipynb -------------------------------------------------------------------------------- /notebooks/CF [0] - target construction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcfee/crema-features/HEAD/notebooks/CF [0] - target construction.ipynb -------------------------------------------------------------------------------- /notebooks/CF [1] - jams construction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcfee/crema-features/HEAD/notebooks/CF [1] - jams construction.ipynb -------------------------------------------------------------------------------- /scripts/index_cal500.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcfee/crema-features/HEAD/scripts/index_cal500.py -------------------------------------------------------------------------------- /scripts/index_isophonics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcfee/crema-features/HEAD/scripts/index_isophonics.py -------------------------------------------------------------------------------- /scripts/index_medleydb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcfee/crema-features/HEAD/scripts/index_medleydb.py -------------------------------------------------------------------------------- /scripts/index_msd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcfee/crema-features/HEAD/scripts/index_msd.py -------------------------------------------------------------------------------- /scripts/medley_artist_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcfee/crema-features/HEAD/scripts/medley_artist_index.json -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcfee/crema-features/HEAD/setup.py -------------------------------------------------------------------------------- /tests/data/test1_44100.jams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcfee/crema-features/HEAD/tests/data/test1_44100.jams -------------------------------------------------------------------------------- /tests/data/test1_44100.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcfee/crema-features/HEAD/tests/data/test1_44100.wav -------------------------------------------------------------------------------- /tests/data/test_index.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcfee/crema-features/HEAD/tests/data/test_index.csv -------------------------------------------------------------------------------- /tests/data/test_index2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcfee/crema-features/HEAD/tests/data/test_index2.csv -------------------------------------------------------------------------------- /tests/test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcfee/crema-features/HEAD/tests/test_data.py -------------------------------------------------------------------------------- /tests/test_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcfee/crema-features/HEAD/tests/test_layers.py -------------------------------------------------------------------------------- /tests/test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcfee/crema-features/HEAD/tests/test_model.py -------------------------------------------------------------------------------- /tests/test_pre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcfee/crema-features/HEAD/tests/test_pre.py -------------------------------------------------------------------------------- /tests/test_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcfee/crema-features/HEAD/tests/test_task.py --------------------------------------------------------------------------------