├── .gitignore ├── ExperimentConfig.py ├── LICENSE ├── README.md ├── config ├── Camera_GrandStaff │ └── c_grandstaff.json ├── GrandStaff │ └── grandstaff.json └── StringQuartets │ ├── Baseline.gin │ ├── Baseline_dist.gin │ ├── CNNSMT.gin │ ├── NEXT_SMT.gin │ └── quartets.json ├── data.py ├── data_augmentation ├── data_augmentation.py └── transforms_custom.py ├── eval_functions.py ├── graphics ├── Litis_Logo.png └── SMT.jpg ├── requirements.txt ├── smt_model ├── __init__.py ├── configuration_smt.py └── modeling_smt.py ├── smt_trainer.py ├── train.py ├── utils.py └── vocab ├── GrandStaffi2w.npy └── GrandStaffw2i.npy /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiscore/SMT/HEAD/.gitignore -------------------------------------------------------------------------------- /ExperimentConfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiscore/SMT/HEAD/ExperimentConfig.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiscore/SMT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiscore/SMT/HEAD/README.md -------------------------------------------------------------------------------- /config/Camera_GrandStaff/c_grandstaff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiscore/SMT/HEAD/config/Camera_GrandStaff/c_grandstaff.json -------------------------------------------------------------------------------- /config/GrandStaff/grandstaff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiscore/SMT/HEAD/config/GrandStaff/grandstaff.json -------------------------------------------------------------------------------- /config/StringQuartets/Baseline.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiscore/SMT/HEAD/config/StringQuartets/Baseline.gin -------------------------------------------------------------------------------- /config/StringQuartets/Baseline_dist.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiscore/SMT/HEAD/config/StringQuartets/Baseline_dist.gin -------------------------------------------------------------------------------- /config/StringQuartets/CNNSMT.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiscore/SMT/HEAD/config/StringQuartets/CNNSMT.gin -------------------------------------------------------------------------------- /config/StringQuartets/NEXT_SMT.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiscore/SMT/HEAD/config/StringQuartets/NEXT_SMT.gin -------------------------------------------------------------------------------- /config/StringQuartets/quartets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiscore/SMT/HEAD/config/StringQuartets/quartets.json -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiscore/SMT/HEAD/data.py -------------------------------------------------------------------------------- /data_augmentation/data_augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiscore/SMT/HEAD/data_augmentation/data_augmentation.py -------------------------------------------------------------------------------- /data_augmentation/transforms_custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiscore/SMT/HEAD/data_augmentation/transforms_custom.py -------------------------------------------------------------------------------- /eval_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiscore/SMT/HEAD/eval_functions.py -------------------------------------------------------------------------------- /graphics/Litis_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiscore/SMT/HEAD/graphics/Litis_Logo.png -------------------------------------------------------------------------------- /graphics/SMT.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiscore/SMT/HEAD/graphics/SMT.jpg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiscore/SMT/HEAD/requirements.txt -------------------------------------------------------------------------------- /smt_model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiscore/SMT/HEAD/smt_model/__init__.py -------------------------------------------------------------------------------- /smt_model/configuration_smt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiscore/SMT/HEAD/smt_model/configuration_smt.py -------------------------------------------------------------------------------- /smt_model/modeling_smt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiscore/SMT/HEAD/smt_model/modeling_smt.py -------------------------------------------------------------------------------- /smt_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiscore/SMT/HEAD/smt_trainer.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiscore/SMT/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiscore/SMT/HEAD/utils.py -------------------------------------------------------------------------------- /vocab/GrandStaffi2w.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiscore/SMT/HEAD/vocab/GrandStaffi2w.npy -------------------------------------------------------------------------------- /vocab/GrandStaffw2i.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiscore/SMT/HEAD/vocab/GrandStaffw2i.npy --------------------------------------------------------------------------------