├── .gitignore ├── LICENSE ├── README.md ├── data └── urmp │ ├── Cello │ └── train.lst │ ├── Clarinet │ └── train.lst │ ├── Flute │ └── train.lst │ ├── Saxophone │ └── train.lst │ ├── Trombone │ └── train.lst │ ├── Trumpet │ └── train.lst │ ├── Viola │ └── train.lst │ ├── Violin │ └── train.lst │ ├── Vn_Fl_Tpt │ └── train-query.lst.bk │ └── testset │ ├── query.lst │ └── test.lst ├── evaluate.py ├── evaluation ├── MSI-DIS │ ├── scores-190.json │ ├── scores-191.json │ ├── scores-192.json │ ├── scores-193.json │ ├── scores-194.json │ ├── scores-195.json │ ├── scores-196.json │ ├── scores-197.json │ ├── scores-198.json │ └── scores-199.json └── MSI │ ├── scores-190.json │ ├── scores-191.json │ ├── scores-192.json │ ├── scores-193.json │ ├── scores-194.json │ ├── scores-195.json │ ├── scores-196.json │ ├── scores-197.json │ ├── scores-198.json │ └── scores-199.json ├── imgs ├── model-fig-1-ab.png └── model-fig-3.png ├── requirements.txt ├── run.sh ├── scripts ├── clean_packed_data.sh ├── draw.sh ├── evaluate-model.sh ├── evaluate.sh ├── generate_dataset.sh ├── generate_feature.sh ├── synthesis.sh └── train-model.sh ├── songs └── road.mid ├── src ├── __init__.py ├── analyze │ ├── draw_table.py │ └── utilities.py ├── conf │ ├── __init__.py │ ├── feature.py │ ├── inference.py │ ├── models.py │ ├── sample.py │ └── urmp.py ├── dataset │ ├── __init__.py │ └── urmp │ │ ├── urmp_feature.py │ │ ├── urmp_generate_dataset.py │ │ ├── urmp_sample.py │ │ └── urmp_test.py ├── inference │ ├── compute_measure.py │ ├── inference.py │ └── utilities.py ├── models │ ├── layers.py │ ├── model_factory.py │ └── models.py └── utils │ ├── __init__.py │ ├── audio_utilities.py │ ├── multiEpochsDataLoader.py │ ├── target_process.py │ ├── utilities.py │ └── weiMidi.py ├── synthesis.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/README.md -------------------------------------------------------------------------------- /data/urmp/Cello/train.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/data/urmp/Cello/train.lst -------------------------------------------------------------------------------- /data/urmp/Clarinet/train.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/data/urmp/Clarinet/train.lst -------------------------------------------------------------------------------- /data/urmp/Flute/train.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/data/urmp/Flute/train.lst -------------------------------------------------------------------------------- /data/urmp/Saxophone/train.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/data/urmp/Saxophone/train.lst -------------------------------------------------------------------------------- /data/urmp/Trombone/train.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/data/urmp/Trombone/train.lst -------------------------------------------------------------------------------- /data/urmp/Trumpet/train.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/data/urmp/Trumpet/train.lst -------------------------------------------------------------------------------- /data/urmp/Viola/train.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/data/urmp/Viola/train.lst -------------------------------------------------------------------------------- /data/urmp/Violin/train.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/data/urmp/Violin/train.lst -------------------------------------------------------------------------------- /data/urmp/Vn_Fl_Tpt/train-query.lst.bk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/data/urmp/Vn_Fl_Tpt/train-query.lst.bk -------------------------------------------------------------------------------- /data/urmp/testset/query.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/data/urmp/testset/query.lst -------------------------------------------------------------------------------- /data/urmp/testset/test.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/data/urmp/testset/test.lst -------------------------------------------------------------------------------- /evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/evaluate.py -------------------------------------------------------------------------------- /evaluation/MSI-DIS/scores-190.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/evaluation/MSI-DIS/scores-190.json -------------------------------------------------------------------------------- /evaluation/MSI-DIS/scores-191.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/evaluation/MSI-DIS/scores-191.json -------------------------------------------------------------------------------- /evaluation/MSI-DIS/scores-192.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/evaluation/MSI-DIS/scores-192.json -------------------------------------------------------------------------------- /evaluation/MSI-DIS/scores-193.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/evaluation/MSI-DIS/scores-193.json -------------------------------------------------------------------------------- /evaluation/MSI-DIS/scores-194.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/evaluation/MSI-DIS/scores-194.json -------------------------------------------------------------------------------- /evaluation/MSI-DIS/scores-195.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/evaluation/MSI-DIS/scores-195.json -------------------------------------------------------------------------------- /evaluation/MSI-DIS/scores-196.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/evaluation/MSI-DIS/scores-196.json -------------------------------------------------------------------------------- /evaluation/MSI-DIS/scores-197.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/evaluation/MSI-DIS/scores-197.json -------------------------------------------------------------------------------- /evaluation/MSI-DIS/scores-198.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/evaluation/MSI-DIS/scores-198.json -------------------------------------------------------------------------------- /evaluation/MSI-DIS/scores-199.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/evaluation/MSI-DIS/scores-199.json -------------------------------------------------------------------------------- /evaluation/MSI/scores-190.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/evaluation/MSI/scores-190.json -------------------------------------------------------------------------------- /evaluation/MSI/scores-191.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/evaluation/MSI/scores-191.json -------------------------------------------------------------------------------- /evaluation/MSI/scores-192.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/evaluation/MSI/scores-192.json -------------------------------------------------------------------------------- /evaluation/MSI/scores-193.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/evaluation/MSI/scores-193.json -------------------------------------------------------------------------------- /evaluation/MSI/scores-194.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/evaluation/MSI/scores-194.json -------------------------------------------------------------------------------- /evaluation/MSI/scores-195.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/evaluation/MSI/scores-195.json -------------------------------------------------------------------------------- /evaluation/MSI/scores-196.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/evaluation/MSI/scores-196.json -------------------------------------------------------------------------------- /evaluation/MSI/scores-197.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/evaluation/MSI/scores-197.json -------------------------------------------------------------------------------- /evaluation/MSI/scores-198.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/evaluation/MSI/scores-198.json -------------------------------------------------------------------------------- /evaluation/MSI/scores-199.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/evaluation/MSI/scores-199.json -------------------------------------------------------------------------------- /imgs/model-fig-1-ab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/imgs/model-fig-1-ab.png -------------------------------------------------------------------------------- /imgs/model-fig-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/imgs/model-fig-3.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/run.sh -------------------------------------------------------------------------------- /scripts/clean_packed_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/scripts/clean_packed_data.sh -------------------------------------------------------------------------------- /scripts/draw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/scripts/draw.sh -------------------------------------------------------------------------------- /scripts/evaluate-model.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/scripts/evaluate-model.sh -------------------------------------------------------------------------------- /scripts/evaluate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/scripts/evaluate.sh -------------------------------------------------------------------------------- /scripts/generate_dataset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/scripts/generate_dataset.sh -------------------------------------------------------------------------------- /scripts/generate_feature.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/scripts/generate_feature.sh -------------------------------------------------------------------------------- /scripts/synthesis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/scripts/synthesis.sh -------------------------------------------------------------------------------- /scripts/train-model.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/scripts/train-model.sh -------------------------------------------------------------------------------- /songs/road.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/songs/road.mid -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/src/__init__.py -------------------------------------------------------------------------------- /src/analyze/draw_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/src/analyze/draw_table.py -------------------------------------------------------------------------------- /src/analyze/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/src/analyze/utilities.py -------------------------------------------------------------------------------- /src/conf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/conf/feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/src/conf/feature.py -------------------------------------------------------------------------------- /src/conf/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/src/conf/inference.py -------------------------------------------------------------------------------- /src/conf/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/src/conf/models.py -------------------------------------------------------------------------------- /src/conf/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/src/conf/sample.py -------------------------------------------------------------------------------- /src/conf/urmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/src/conf/urmp.py -------------------------------------------------------------------------------- /src/dataset/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dataset/urmp/urmp_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/src/dataset/urmp/urmp_feature.py -------------------------------------------------------------------------------- /src/dataset/urmp/urmp_generate_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/src/dataset/urmp/urmp_generate_dataset.py -------------------------------------------------------------------------------- /src/dataset/urmp/urmp_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/src/dataset/urmp/urmp_sample.py -------------------------------------------------------------------------------- /src/dataset/urmp/urmp_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/src/dataset/urmp/urmp_test.py -------------------------------------------------------------------------------- /src/inference/compute_measure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/src/inference/compute_measure.py -------------------------------------------------------------------------------- /src/inference/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/src/inference/inference.py -------------------------------------------------------------------------------- /src/inference/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/src/inference/utilities.py -------------------------------------------------------------------------------- /src/models/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/src/models/layers.py -------------------------------------------------------------------------------- /src/models/model_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/src/models/model_factory.py -------------------------------------------------------------------------------- /src/models/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/src/models/models.py -------------------------------------------------------------------------------- /src/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/utils/audio_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/src/utils/audio_utilities.py -------------------------------------------------------------------------------- /src/utils/multiEpochsDataLoader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/src/utils/multiEpochsDataLoader.py -------------------------------------------------------------------------------- /src/utils/target_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/src/utils/target_process.py -------------------------------------------------------------------------------- /src/utils/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/src/utils/utilities.py -------------------------------------------------------------------------------- /src/utils/weiMidi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/src/utils/weiMidi.py -------------------------------------------------------------------------------- /synthesis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/synthesis.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikyo-16/A-unified-model-for-zero-shot-musical-source-separation-transcription-and-synthesis/HEAD/train.py --------------------------------------------------------------------------------