├── .gitignore ├── DATA-LICENSE ├── LICENSE ├── README.md ├── assets └── teaser.png ├── dataloaders ├── data_dataloaders.py ├── dataloader_MGSV_EC_feature.py └── dataloader_MGSV_EC_rawdata.py ├── dataset └── MGSV-EC │ ├── test_data.csv │ ├── train_data.csv │ └── val_data.csv ├── model ├── ast_models.py ├── model_Base.py └── model_Uni.py ├── modules ├── loss.py ├── metrics.py └── transformer.py ├── music_detr ├── loss_detr.py ├── matcher.py ├── misc.py ├── position_encoding.py ├── span_utils.py ├── test_matcher.py └── transformer.py ├── requirements.txt ├── scripts ├── test_kuai_all_feature.sh └── train_kuai_all_feature.sh ├── test-MaDe.py ├── train-MaDe.py └── utils ├── scheduler.py ├── util_test.py └── util_train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxayt/MGSV/HEAD/.gitignore -------------------------------------------------------------------------------- /DATA-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxayt/MGSV/HEAD/DATA-LICENSE -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxayt/MGSV/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxayt/MGSV/HEAD/README.md -------------------------------------------------------------------------------- /assets/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxayt/MGSV/HEAD/assets/teaser.png -------------------------------------------------------------------------------- /dataloaders/data_dataloaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxayt/MGSV/HEAD/dataloaders/data_dataloaders.py -------------------------------------------------------------------------------- /dataloaders/dataloader_MGSV_EC_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxayt/MGSV/HEAD/dataloaders/dataloader_MGSV_EC_feature.py -------------------------------------------------------------------------------- /dataloaders/dataloader_MGSV_EC_rawdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxayt/MGSV/HEAD/dataloaders/dataloader_MGSV_EC_rawdata.py -------------------------------------------------------------------------------- /dataset/MGSV-EC/test_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxayt/MGSV/HEAD/dataset/MGSV-EC/test_data.csv -------------------------------------------------------------------------------- /dataset/MGSV-EC/train_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxayt/MGSV/HEAD/dataset/MGSV-EC/train_data.csv -------------------------------------------------------------------------------- /dataset/MGSV-EC/val_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxayt/MGSV/HEAD/dataset/MGSV-EC/val_data.csv -------------------------------------------------------------------------------- /model/ast_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxayt/MGSV/HEAD/model/ast_models.py -------------------------------------------------------------------------------- /model/model_Base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxayt/MGSV/HEAD/model/model_Base.py -------------------------------------------------------------------------------- /model/model_Uni.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxayt/MGSV/HEAD/model/model_Uni.py -------------------------------------------------------------------------------- /modules/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxayt/MGSV/HEAD/modules/loss.py -------------------------------------------------------------------------------- /modules/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxayt/MGSV/HEAD/modules/metrics.py -------------------------------------------------------------------------------- /modules/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxayt/MGSV/HEAD/modules/transformer.py -------------------------------------------------------------------------------- /music_detr/loss_detr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxayt/MGSV/HEAD/music_detr/loss_detr.py -------------------------------------------------------------------------------- /music_detr/matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxayt/MGSV/HEAD/music_detr/matcher.py -------------------------------------------------------------------------------- /music_detr/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxayt/MGSV/HEAD/music_detr/misc.py -------------------------------------------------------------------------------- /music_detr/position_encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxayt/MGSV/HEAD/music_detr/position_encoding.py -------------------------------------------------------------------------------- /music_detr/span_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxayt/MGSV/HEAD/music_detr/span_utils.py -------------------------------------------------------------------------------- /music_detr/test_matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxayt/MGSV/HEAD/music_detr/test_matcher.py -------------------------------------------------------------------------------- /music_detr/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxayt/MGSV/HEAD/music_detr/transformer.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxayt/MGSV/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/test_kuai_all_feature.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxayt/MGSV/HEAD/scripts/test_kuai_all_feature.sh -------------------------------------------------------------------------------- /scripts/train_kuai_all_feature.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxayt/MGSV/HEAD/scripts/train_kuai_all_feature.sh -------------------------------------------------------------------------------- /test-MaDe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxayt/MGSV/HEAD/test-MaDe.py -------------------------------------------------------------------------------- /train-MaDe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxayt/MGSV/HEAD/train-MaDe.py -------------------------------------------------------------------------------- /utils/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxayt/MGSV/HEAD/utils/scheduler.py -------------------------------------------------------------------------------- /utils/util_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxayt/MGSV/HEAD/utils/util_test.py -------------------------------------------------------------------------------- /utils/util_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxayt/MGSV/HEAD/utils/util_train.py --------------------------------------------------------------------------------