├── Data ├── test_tracks.txt └── train_tracks.txt ├── LICENSE ├── Matlab ├── computeBeatMelSpec.m ├── constructMelFilterbank.m ├── evaluatePredictions.m ├── featureExtractionSegmentationSalami.m ├── featureExtractionTestTracksSalami.m ├── featurePostProcessingSalami.m ├── featurePostProcessingTestTracksSalami.m ├── getBeatTimes.m ├── getSegmentTimes.m ├── melfilter.m └── segmentationCNN_config.m ├── Python ├── evaluation.py ├── feature_extraction.py ├── paths.py ├── track_segmentation.py ├── train_segmentation_cnn.py ├── utils.py └── visualization.py ├── README.md ├── Results ├── 1037.png ├── 1167.png ├── 1183.png ├── 1214.png ├── 1279.png ├── 1279_spec.png ├── 1368.png ├── 1391.png └── 1487.png └── requirements.txt /Data/test_tracks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mleimeister/SegmentationCNN/HEAD/Data/test_tracks.txt -------------------------------------------------------------------------------- /Data/train_tracks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mleimeister/SegmentationCNN/HEAD/Data/train_tracks.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mleimeister/SegmentationCNN/HEAD/LICENSE -------------------------------------------------------------------------------- /Matlab/computeBeatMelSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mleimeister/SegmentationCNN/HEAD/Matlab/computeBeatMelSpec.m -------------------------------------------------------------------------------- /Matlab/constructMelFilterbank.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mleimeister/SegmentationCNN/HEAD/Matlab/constructMelFilterbank.m -------------------------------------------------------------------------------- /Matlab/evaluatePredictions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mleimeister/SegmentationCNN/HEAD/Matlab/evaluatePredictions.m -------------------------------------------------------------------------------- /Matlab/featureExtractionSegmentationSalami.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mleimeister/SegmentationCNN/HEAD/Matlab/featureExtractionSegmentationSalami.m -------------------------------------------------------------------------------- /Matlab/featureExtractionTestTracksSalami.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mleimeister/SegmentationCNN/HEAD/Matlab/featureExtractionTestTracksSalami.m -------------------------------------------------------------------------------- /Matlab/featurePostProcessingSalami.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mleimeister/SegmentationCNN/HEAD/Matlab/featurePostProcessingSalami.m -------------------------------------------------------------------------------- /Matlab/featurePostProcessingTestTracksSalami.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mleimeister/SegmentationCNN/HEAD/Matlab/featurePostProcessingTestTracksSalami.m -------------------------------------------------------------------------------- /Matlab/getBeatTimes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mleimeister/SegmentationCNN/HEAD/Matlab/getBeatTimes.m -------------------------------------------------------------------------------- /Matlab/getSegmentTimes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mleimeister/SegmentationCNN/HEAD/Matlab/getSegmentTimes.m -------------------------------------------------------------------------------- /Matlab/melfilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mleimeister/SegmentationCNN/HEAD/Matlab/melfilter.m -------------------------------------------------------------------------------- /Matlab/segmentationCNN_config.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mleimeister/SegmentationCNN/HEAD/Matlab/segmentationCNN_config.m -------------------------------------------------------------------------------- /Python/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mleimeister/SegmentationCNN/HEAD/Python/evaluation.py -------------------------------------------------------------------------------- /Python/feature_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mleimeister/SegmentationCNN/HEAD/Python/feature_extraction.py -------------------------------------------------------------------------------- /Python/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mleimeister/SegmentationCNN/HEAD/Python/paths.py -------------------------------------------------------------------------------- /Python/track_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mleimeister/SegmentationCNN/HEAD/Python/track_segmentation.py -------------------------------------------------------------------------------- /Python/train_segmentation_cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mleimeister/SegmentationCNN/HEAD/Python/train_segmentation_cnn.py -------------------------------------------------------------------------------- /Python/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mleimeister/SegmentationCNN/HEAD/Python/utils.py -------------------------------------------------------------------------------- /Python/visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mleimeister/SegmentationCNN/HEAD/Python/visualization.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mleimeister/SegmentationCNN/HEAD/README.md -------------------------------------------------------------------------------- /Results/1037.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mleimeister/SegmentationCNN/HEAD/Results/1037.png -------------------------------------------------------------------------------- /Results/1167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mleimeister/SegmentationCNN/HEAD/Results/1167.png -------------------------------------------------------------------------------- /Results/1183.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mleimeister/SegmentationCNN/HEAD/Results/1183.png -------------------------------------------------------------------------------- /Results/1214.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mleimeister/SegmentationCNN/HEAD/Results/1214.png -------------------------------------------------------------------------------- /Results/1279.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mleimeister/SegmentationCNN/HEAD/Results/1279.png -------------------------------------------------------------------------------- /Results/1279_spec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mleimeister/SegmentationCNN/HEAD/Results/1279_spec.png -------------------------------------------------------------------------------- /Results/1368.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mleimeister/SegmentationCNN/HEAD/Results/1368.png -------------------------------------------------------------------------------- /Results/1391.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mleimeister/SegmentationCNN/HEAD/Results/1391.png -------------------------------------------------------------------------------- /Results/1487.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mleimeister/SegmentationCNN/HEAD/Results/1487.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mleimeister/SegmentationCNN/HEAD/requirements.txt --------------------------------------------------------------------------------