├── .gitignore ├── README.md ├── ace_tools ├── __init__.py ├── convert_to_jamsv2.py ├── evaluate.py ├── labels.py ├── lexicon.py ├── util.py └── visualize.py ├── data ├── Chord_dataset train-test.ipynb ├── chord_dataset │ ├── annotations │ │ ├── DNN │ │ │ ├── test.jamset │ │ │ ├── test.jv2 │ │ │ ├── train0.jamset │ │ │ ├── train0.jv2 │ │ │ ├── train1.jv2 │ │ │ ├── train2.jv2 │ │ │ ├── train3.jv2 │ │ │ └── train4.jv2 │ │ ├── kHMM │ │ │ ├── test.jamset │ │ │ ├── test.jv2 │ │ │ ├── train0.jamset │ │ │ ├── train0.jv2 │ │ │ ├── train1.jv2 │ │ │ ├── train2.jv2 │ │ │ ├── train3.jv2 │ │ │ └── train4.jv2 │ │ └── references │ │ │ ├── all.jamset │ │ │ ├── all.jv2 │ │ │ ├── others.jv2 │ │ │ └── v157_strict.jv2 │ ├── results │ │ ├── DNN │ │ │ ├── all_DNN_test.json │ │ │ ├── all_DNN_train0.json │ │ │ ├── all_DNN_train1.json │ │ │ ├── all_DNN_train2.json │ │ │ ├── all_DNN_train3.json │ │ │ ├── all_DNN_train4.json │ │ │ ├── kHMM_DNN_test.json │ │ │ ├── kHMM_DNN_train0.json │ │ │ ├── kHMM_DNN_train1.json │ │ │ ├── kHMM_DNN_train2.json │ │ │ ├── kHMM_DNN_train3.json │ │ │ └── kHMM_DNN_train4.json │ │ └── kHMM │ │ │ ├── DNN_kHMM_test.json │ │ │ ├── DNN_kHMM_train0.json │ │ │ ├── DNN_kHMM_train1.json │ │ │ ├── DNN_kHMM_train2.json │ │ │ ├── DNN_kHMM_train3.json │ │ │ ├── DNN_kHMM_train4.json │ │ │ ├── all_kHMM_test.json │ │ │ ├── all_kHMM_train0.json │ │ │ ├── all_kHMM_train1.json │ │ │ ├── all_kHMM_train2.json │ │ │ ├── all_kHMM_train3.json │ │ │ └── all_kHMM_train4.json │ ├── test00.csv │ ├── test01.csv │ ├── test02.csv │ ├── test03.csv │ ├── test04.csv │ ├── train00.csv │ ├── train01.csv │ ├── train02.csv │ ├── train03.csv │ └── train04.csv └── rock_corpus │ ├── annotations │ ├── DNN │ │ ├── DNN0.jamset │ │ ├── DNN0.jv2 │ │ ├── DNN1.jamset │ │ ├── DNN1.jv2 │ │ ├── DNN2.jamset │ │ ├── DNN2.jv2 │ │ ├── DNN3.jamset │ │ ├── DNN3.jv2 │ │ ├── DNN4.jamset │ │ └── DNN4.jv2 │ ├── kHMM │ │ ├── kHMM0.jamset │ │ ├── kHMM0.jv2 │ │ ├── kHMM1.jamset │ │ ├── kHMM1.jv2 │ │ ├── kHMM2.jamset │ │ ├── kHMM2.jv2 │ │ ├── kHMM3.jamset │ │ ├── kHMM3.jv2 │ │ ├── kHMM4.jamset │ │ └── kHMM4.jv2 │ └── references │ │ ├── references.jamset │ │ └── references.jv2 │ └── results │ ├── DNN │ ├── DT_DNN0.json │ ├── DT_DNN1.json │ ├── DT_DNN2.json │ ├── DT_DNN3.json │ ├── DT_DNN4.json │ ├── TdC_DNN0.json │ ├── TdC_DNN1.json │ ├── TdC_DNN2.json │ ├── TdC_DNN3.json │ ├── TdC_DNN4.json │ ├── kHMM_DNN0.json │ ├── kHMM_DNN1.json │ ├── kHMM_DNN2.json │ ├── kHMM_DNN3.json │ └── kHMM_DNN4.json │ ├── DT │ └── TdC_DT.json │ ├── TdC │ └── DT_TdC.json │ └── kHMM │ ├── DNN_kHMM0.json │ ├── DNN_kHMM1.json │ ├── DNN_kHMM2.json │ ├── DNN_kHMM3.json │ ├── DNN_kHMM4.json │ ├── DT_kHMM0.json │ ├── DT_kHMM1.json │ ├── DT_kHMM2.json │ ├── DT_kHMM3.json │ ├── DT_kHMM4.json │ ├── TdC_kHMM0.json │ ├── TdC_kHMM1.json │ ├── TdC_kHMM2.json │ ├── TdC_kHMM3.json │ └── TdC_kHMM4.json ├── experiments.ipynb ├── modernize_jams.py ├── paper ├── 2015_HumphreyBello_ISMIRChords.pdf ├── 2015_HumphreyBello_ISMIRChords.tex ├── cite.sty ├── figs │ ├── 88x31.png │ ├── TROSSUK149E3AE03BD_annotations.pdf │ ├── TROSSUK149E3AE03BD_annotations_mkup.pdf │ ├── TROSSUK149E3AE03BD_annotations_mkup2.pdf │ ├── TROSSUK149E3AE03BD_legend.pdf │ ├── TROSSUK149E3AE03BD_meta.json │ ├── cc_by.pdf │ ├── human_agreement-vs-best_DNN_est.pdf │ ├── human_agreement-vs-best_kHMM_est.pdf │ └── model_agreement-vs-best_est.pdf ├── figure.png ├── ismir.sty ├── library.bib └── placeholder.pdf └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/README.md -------------------------------------------------------------------------------- /ace_tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/ace_tools/__init__.py -------------------------------------------------------------------------------- /ace_tools/convert_to_jamsv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/ace_tools/convert_to_jamsv2.py -------------------------------------------------------------------------------- /ace_tools/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/ace_tools/evaluate.py -------------------------------------------------------------------------------- /ace_tools/labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/ace_tools/labels.py -------------------------------------------------------------------------------- /ace_tools/lexicon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/ace_tools/lexicon.py -------------------------------------------------------------------------------- /ace_tools/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/ace_tools/util.py -------------------------------------------------------------------------------- /ace_tools/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/ace_tools/visualize.py -------------------------------------------------------------------------------- /data/Chord_dataset train-test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/Chord_dataset train-test.ipynb -------------------------------------------------------------------------------- /data/chord_dataset/annotations/DNN/test.jamset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/annotations/DNN/test.jamset -------------------------------------------------------------------------------- /data/chord_dataset/annotations/DNN/test.jv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/annotations/DNN/test.jv2 -------------------------------------------------------------------------------- /data/chord_dataset/annotations/DNN/train0.jamset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/annotations/DNN/train0.jamset -------------------------------------------------------------------------------- /data/chord_dataset/annotations/DNN/train0.jv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/annotations/DNN/train0.jv2 -------------------------------------------------------------------------------- /data/chord_dataset/annotations/DNN/train1.jv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/annotations/DNN/train1.jv2 -------------------------------------------------------------------------------- /data/chord_dataset/annotations/DNN/train2.jv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/annotations/DNN/train2.jv2 -------------------------------------------------------------------------------- /data/chord_dataset/annotations/DNN/train3.jv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/annotations/DNN/train3.jv2 -------------------------------------------------------------------------------- /data/chord_dataset/annotations/DNN/train4.jv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/annotations/DNN/train4.jv2 -------------------------------------------------------------------------------- /data/chord_dataset/annotations/kHMM/test.jamset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/annotations/kHMM/test.jamset -------------------------------------------------------------------------------- /data/chord_dataset/annotations/kHMM/test.jv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/annotations/kHMM/test.jv2 -------------------------------------------------------------------------------- /data/chord_dataset/annotations/kHMM/train0.jamset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/annotations/kHMM/train0.jamset -------------------------------------------------------------------------------- /data/chord_dataset/annotations/kHMM/train0.jv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/annotations/kHMM/train0.jv2 -------------------------------------------------------------------------------- /data/chord_dataset/annotations/kHMM/train1.jv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/annotations/kHMM/train1.jv2 -------------------------------------------------------------------------------- /data/chord_dataset/annotations/kHMM/train2.jv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/annotations/kHMM/train2.jv2 -------------------------------------------------------------------------------- /data/chord_dataset/annotations/kHMM/train3.jv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/annotations/kHMM/train3.jv2 -------------------------------------------------------------------------------- /data/chord_dataset/annotations/kHMM/train4.jv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/annotations/kHMM/train4.jv2 -------------------------------------------------------------------------------- /data/chord_dataset/annotations/references/all.jamset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/annotations/references/all.jamset -------------------------------------------------------------------------------- /data/chord_dataset/annotations/references/all.jv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/annotations/references/all.jv2 -------------------------------------------------------------------------------- /data/chord_dataset/annotations/references/others.jv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/annotations/references/others.jv2 -------------------------------------------------------------------------------- /data/chord_dataset/annotations/references/v157_strict.jv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/annotations/references/v157_strict.jv2 -------------------------------------------------------------------------------- /data/chord_dataset/results/DNN/all_DNN_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/results/DNN/all_DNN_test.json -------------------------------------------------------------------------------- /data/chord_dataset/results/DNN/all_DNN_train0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/results/DNN/all_DNN_train0.json -------------------------------------------------------------------------------- /data/chord_dataset/results/DNN/all_DNN_train1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/results/DNN/all_DNN_train1.json -------------------------------------------------------------------------------- /data/chord_dataset/results/DNN/all_DNN_train2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/results/DNN/all_DNN_train2.json -------------------------------------------------------------------------------- /data/chord_dataset/results/DNN/all_DNN_train3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/results/DNN/all_DNN_train3.json -------------------------------------------------------------------------------- /data/chord_dataset/results/DNN/all_DNN_train4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/results/DNN/all_DNN_train4.json -------------------------------------------------------------------------------- /data/chord_dataset/results/DNN/kHMM_DNN_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/results/DNN/kHMM_DNN_test.json -------------------------------------------------------------------------------- /data/chord_dataset/results/DNN/kHMM_DNN_train0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/results/DNN/kHMM_DNN_train0.json -------------------------------------------------------------------------------- /data/chord_dataset/results/DNN/kHMM_DNN_train1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/results/DNN/kHMM_DNN_train1.json -------------------------------------------------------------------------------- /data/chord_dataset/results/DNN/kHMM_DNN_train2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/results/DNN/kHMM_DNN_train2.json -------------------------------------------------------------------------------- /data/chord_dataset/results/DNN/kHMM_DNN_train3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/results/DNN/kHMM_DNN_train3.json -------------------------------------------------------------------------------- /data/chord_dataset/results/DNN/kHMM_DNN_train4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/results/DNN/kHMM_DNN_train4.json -------------------------------------------------------------------------------- /data/chord_dataset/results/kHMM/DNN_kHMM_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/results/kHMM/DNN_kHMM_test.json -------------------------------------------------------------------------------- /data/chord_dataset/results/kHMM/DNN_kHMM_train0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/results/kHMM/DNN_kHMM_train0.json -------------------------------------------------------------------------------- /data/chord_dataset/results/kHMM/DNN_kHMM_train1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/results/kHMM/DNN_kHMM_train1.json -------------------------------------------------------------------------------- /data/chord_dataset/results/kHMM/DNN_kHMM_train2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/results/kHMM/DNN_kHMM_train2.json -------------------------------------------------------------------------------- /data/chord_dataset/results/kHMM/DNN_kHMM_train3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/results/kHMM/DNN_kHMM_train3.json -------------------------------------------------------------------------------- /data/chord_dataset/results/kHMM/DNN_kHMM_train4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/results/kHMM/DNN_kHMM_train4.json -------------------------------------------------------------------------------- /data/chord_dataset/results/kHMM/all_kHMM_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/results/kHMM/all_kHMM_test.json -------------------------------------------------------------------------------- /data/chord_dataset/results/kHMM/all_kHMM_train0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/results/kHMM/all_kHMM_train0.json -------------------------------------------------------------------------------- /data/chord_dataset/results/kHMM/all_kHMM_train1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/results/kHMM/all_kHMM_train1.json -------------------------------------------------------------------------------- /data/chord_dataset/results/kHMM/all_kHMM_train2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/results/kHMM/all_kHMM_train2.json -------------------------------------------------------------------------------- /data/chord_dataset/results/kHMM/all_kHMM_train3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/results/kHMM/all_kHMM_train3.json -------------------------------------------------------------------------------- /data/chord_dataset/results/kHMM/all_kHMM_train4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/results/kHMM/all_kHMM_train4.json -------------------------------------------------------------------------------- /data/chord_dataset/test00.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/test00.csv -------------------------------------------------------------------------------- /data/chord_dataset/test01.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/test01.csv -------------------------------------------------------------------------------- /data/chord_dataset/test02.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/test02.csv -------------------------------------------------------------------------------- /data/chord_dataset/test03.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/test03.csv -------------------------------------------------------------------------------- /data/chord_dataset/test04.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/test04.csv -------------------------------------------------------------------------------- /data/chord_dataset/train00.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/train00.csv -------------------------------------------------------------------------------- /data/chord_dataset/train01.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/train01.csv -------------------------------------------------------------------------------- /data/chord_dataset/train02.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/train02.csv -------------------------------------------------------------------------------- /data/chord_dataset/train03.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/train03.csv -------------------------------------------------------------------------------- /data/chord_dataset/train04.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/chord_dataset/train04.csv -------------------------------------------------------------------------------- /data/rock_corpus/annotations/DNN/DNN0.jamset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/annotations/DNN/DNN0.jamset -------------------------------------------------------------------------------- /data/rock_corpus/annotations/DNN/DNN0.jv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/annotations/DNN/DNN0.jv2 -------------------------------------------------------------------------------- /data/rock_corpus/annotations/DNN/DNN1.jamset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/annotations/DNN/DNN1.jamset -------------------------------------------------------------------------------- /data/rock_corpus/annotations/DNN/DNN1.jv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/annotations/DNN/DNN1.jv2 -------------------------------------------------------------------------------- /data/rock_corpus/annotations/DNN/DNN2.jamset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/annotations/DNN/DNN2.jamset -------------------------------------------------------------------------------- /data/rock_corpus/annotations/DNN/DNN2.jv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/annotations/DNN/DNN2.jv2 -------------------------------------------------------------------------------- /data/rock_corpus/annotations/DNN/DNN3.jamset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/annotations/DNN/DNN3.jamset -------------------------------------------------------------------------------- /data/rock_corpus/annotations/DNN/DNN3.jv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/annotations/DNN/DNN3.jv2 -------------------------------------------------------------------------------- /data/rock_corpus/annotations/DNN/DNN4.jamset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/annotations/DNN/DNN4.jamset -------------------------------------------------------------------------------- /data/rock_corpus/annotations/DNN/DNN4.jv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/annotations/DNN/DNN4.jv2 -------------------------------------------------------------------------------- /data/rock_corpus/annotations/kHMM/kHMM0.jamset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/annotations/kHMM/kHMM0.jamset -------------------------------------------------------------------------------- /data/rock_corpus/annotations/kHMM/kHMM0.jv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/annotations/kHMM/kHMM0.jv2 -------------------------------------------------------------------------------- /data/rock_corpus/annotations/kHMM/kHMM1.jamset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/annotations/kHMM/kHMM1.jamset -------------------------------------------------------------------------------- /data/rock_corpus/annotations/kHMM/kHMM1.jv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/annotations/kHMM/kHMM1.jv2 -------------------------------------------------------------------------------- /data/rock_corpus/annotations/kHMM/kHMM2.jamset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/annotations/kHMM/kHMM2.jamset -------------------------------------------------------------------------------- /data/rock_corpus/annotations/kHMM/kHMM2.jv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/annotations/kHMM/kHMM2.jv2 -------------------------------------------------------------------------------- /data/rock_corpus/annotations/kHMM/kHMM3.jamset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/annotations/kHMM/kHMM3.jamset -------------------------------------------------------------------------------- /data/rock_corpus/annotations/kHMM/kHMM3.jv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/annotations/kHMM/kHMM3.jv2 -------------------------------------------------------------------------------- /data/rock_corpus/annotations/kHMM/kHMM4.jamset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/annotations/kHMM/kHMM4.jamset -------------------------------------------------------------------------------- /data/rock_corpus/annotations/kHMM/kHMM4.jv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/annotations/kHMM/kHMM4.jv2 -------------------------------------------------------------------------------- /data/rock_corpus/annotations/references/references.jamset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/annotations/references/references.jamset -------------------------------------------------------------------------------- /data/rock_corpus/annotations/references/references.jv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/annotations/references/references.jv2 -------------------------------------------------------------------------------- /data/rock_corpus/results/DNN/DT_DNN0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/results/DNN/DT_DNN0.json -------------------------------------------------------------------------------- /data/rock_corpus/results/DNN/DT_DNN1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/results/DNN/DT_DNN1.json -------------------------------------------------------------------------------- /data/rock_corpus/results/DNN/DT_DNN2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/results/DNN/DT_DNN2.json -------------------------------------------------------------------------------- /data/rock_corpus/results/DNN/DT_DNN3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/results/DNN/DT_DNN3.json -------------------------------------------------------------------------------- /data/rock_corpus/results/DNN/DT_DNN4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/results/DNN/DT_DNN4.json -------------------------------------------------------------------------------- /data/rock_corpus/results/DNN/TdC_DNN0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/results/DNN/TdC_DNN0.json -------------------------------------------------------------------------------- /data/rock_corpus/results/DNN/TdC_DNN1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/results/DNN/TdC_DNN1.json -------------------------------------------------------------------------------- /data/rock_corpus/results/DNN/TdC_DNN2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/results/DNN/TdC_DNN2.json -------------------------------------------------------------------------------- /data/rock_corpus/results/DNN/TdC_DNN3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/results/DNN/TdC_DNN3.json -------------------------------------------------------------------------------- /data/rock_corpus/results/DNN/TdC_DNN4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/results/DNN/TdC_DNN4.json -------------------------------------------------------------------------------- /data/rock_corpus/results/DNN/kHMM_DNN0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/results/DNN/kHMM_DNN0.json -------------------------------------------------------------------------------- /data/rock_corpus/results/DNN/kHMM_DNN1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/results/DNN/kHMM_DNN1.json -------------------------------------------------------------------------------- /data/rock_corpus/results/DNN/kHMM_DNN2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/results/DNN/kHMM_DNN2.json -------------------------------------------------------------------------------- /data/rock_corpus/results/DNN/kHMM_DNN3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/results/DNN/kHMM_DNN3.json -------------------------------------------------------------------------------- /data/rock_corpus/results/DNN/kHMM_DNN4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/results/DNN/kHMM_DNN4.json -------------------------------------------------------------------------------- /data/rock_corpus/results/DT/TdC_DT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/results/DT/TdC_DT.json -------------------------------------------------------------------------------- /data/rock_corpus/results/TdC/DT_TdC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/results/TdC/DT_TdC.json -------------------------------------------------------------------------------- /data/rock_corpus/results/kHMM/DNN_kHMM0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/results/kHMM/DNN_kHMM0.json -------------------------------------------------------------------------------- /data/rock_corpus/results/kHMM/DNN_kHMM1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/results/kHMM/DNN_kHMM1.json -------------------------------------------------------------------------------- /data/rock_corpus/results/kHMM/DNN_kHMM2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/results/kHMM/DNN_kHMM2.json -------------------------------------------------------------------------------- /data/rock_corpus/results/kHMM/DNN_kHMM3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/results/kHMM/DNN_kHMM3.json -------------------------------------------------------------------------------- /data/rock_corpus/results/kHMM/DNN_kHMM4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/results/kHMM/DNN_kHMM4.json -------------------------------------------------------------------------------- /data/rock_corpus/results/kHMM/DT_kHMM0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/results/kHMM/DT_kHMM0.json -------------------------------------------------------------------------------- /data/rock_corpus/results/kHMM/DT_kHMM1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/results/kHMM/DT_kHMM1.json -------------------------------------------------------------------------------- /data/rock_corpus/results/kHMM/DT_kHMM2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/results/kHMM/DT_kHMM2.json -------------------------------------------------------------------------------- /data/rock_corpus/results/kHMM/DT_kHMM3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/results/kHMM/DT_kHMM3.json -------------------------------------------------------------------------------- /data/rock_corpus/results/kHMM/DT_kHMM4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/results/kHMM/DT_kHMM4.json -------------------------------------------------------------------------------- /data/rock_corpus/results/kHMM/TdC_kHMM0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/results/kHMM/TdC_kHMM0.json -------------------------------------------------------------------------------- /data/rock_corpus/results/kHMM/TdC_kHMM1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/results/kHMM/TdC_kHMM1.json -------------------------------------------------------------------------------- /data/rock_corpus/results/kHMM/TdC_kHMM2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/results/kHMM/TdC_kHMM2.json -------------------------------------------------------------------------------- /data/rock_corpus/results/kHMM/TdC_kHMM3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/results/kHMM/TdC_kHMM3.json -------------------------------------------------------------------------------- /data/rock_corpus/results/kHMM/TdC_kHMM4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/data/rock_corpus/results/kHMM/TdC_kHMM4.json -------------------------------------------------------------------------------- /experiments.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/experiments.ipynb -------------------------------------------------------------------------------- /modernize_jams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/modernize_jams.py -------------------------------------------------------------------------------- /paper/2015_HumphreyBello_ISMIRChords.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/paper/2015_HumphreyBello_ISMIRChords.pdf -------------------------------------------------------------------------------- /paper/2015_HumphreyBello_ISMIRChords.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/paper/2015_HumphreyBello_ISMIRChords.tex -------------------------------------------------------------------------------- /paper/cite.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/paper/cite.sty -------------------------------------------------------------------------------- /paper/figs/88x31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/paper/figs/88x31.png -------------------------------------------------------------------------------- /paper/figs/TROSSUK149E3AE03BD_annotations.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/paper/figs/TROSSUK149E3AE03BD_annotations.pdf -------------------------------------------------------------------------------- /paper/figs/TROSSUK149E3AE03BD_annotations_mkup.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/paper/figs/TROSSUK149E3AE03BD_annotations_mkup.pdf -------------------------------------------------------------------------------- /paper/figs/TROSSUK149E3AE03BD_annotations_mkup2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/paper/figs/TROSSUK149E3AE03BD_annotations_mkup2.pdf -------------------------------------------------------------------------------- /paper/figs/TROSSUK149E3AE03BD_legend.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/paper/figs/TROSSUK149E3AE03BD_legend.pdf -------------------------------------------------------------------------------- /paper/figs/TROSSUK149E3AE03BD_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/paper/figs/TROSSUK149E3AE03BD_meta.json -------------------------------------------------------------------------------- /paper/figs/cc_by.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/paper/figs/cc_by.pdf -------------------------------------------------------------------------------- /paper/figs/human_agreement-vs-best_DNN_est.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/paper/figs/human_agreement-vs-best_DNN_est.pdf -------------------------------------------------------------------------------- /paper/figs/human_agreement-vs-best_kHMM_est.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/paper/figs/human_agreement-vs-best_kHMM_est.pdf -------------------------------------------------------------------------------- /paper/figs/model_agreement-vs-best_est.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/paper/figs/model_agreement-vs-best_est.pdf -------------------------------------------------------------------------------- /paper/figure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/paper/figure.png -------------------------------------------------------------------------------- /paper/ismir.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/paper/ismir.sty -------------------------------------------------------------------------------- /paper/library.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/paper/library.bib -------------------------------------------------------------------------------- /paper/placeholder.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/paper/placeholder.pdf -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejhumphrey/ace-lessons/HEAD/setup.py --------------------------------------------------------------------------------