├── .github └── workflows │ ├── main.yml │ └── pythonpublish.yml ├── .gitignore ├── LICENSE ├── README.md ├── codecov.yml ├── datasets └── README.md ├── dcase_models ├── __init__.py ├── data │ ├── __init__.py │ ├── data_augmentation.py │ ├── data_generator.py │ ├── dataset_base.py │ ├── datasets.py │ ├── feature_extractor.py │ ├── features.py │ └── scaler.py ├── example_dataset │ └── audio │ │ ├── 147764-4-7-0.wav │ │ ├── 176787-5-0-0.wav │ │ └── 40722-8-0-7.wav ├── model │ ├── __init__.py │ ├── container.py │ ├── models.py │ └── pretrained_weights │ │ └── README.md ├── util │ ├── __init__.py │ ├── callbacks.py │ ├── data.py │ ├── events.py │ ├── files.py │ ├── gui.py │ ├── metrics.py │ ├── misc.py │ └── ui.py └── version.py ├── docs ├── Makefile ├── make.bat ├── requirements.txt └── source │ ├── _static │ └── DCASE-class-diagram.png │ ├── citation.rst │ ├── conf.py │ ├── data.rst │ ├── development.rst │ ├── examples.rst │ ├── examples │ └── README.txt │ ├── extension.rst │ ├── index.rst │ ├── install.rst │ ├── introduction.rst │ ├── model.rst │ ├── tutorial.rst │ └── util.rst ├── notebooks ├── Readme.md ├── basics │ ├── Model_Train_and_evaluate.ipynb │ ├── data_augmentation.ipynb │ ├── download_and_prepare_datasets.ipynb │ ├── feature_extraction.ipynb │ └── output │ │ └── basics │ │ ├── best_weights.hdf5 │ │ └── training.log ├── challenges │ └── 2020_Task_1 │ │ └── DCASE_Challenge_2020_-_Task_1_-_Acoustic_scene_classification.ipynb └── papers │ ├── A_CRNN │ ├── best_weights.hdf5 │ ├── paper_Adavanne_et_al_ICASSP_2017_A_CRNN.ipynb │ └── training.log │ ├── SB_CNN │ ├── best_weights.hdf5 │ ├── paper_SalamonBello_IEEE-Signal-Process-Lett-2017_CNN.ipynb │ └── training.log │ └── SB_CNN_SED │ ├── best_weights.hdf5 │ ├── paper_SalamonBello_IEEE-WASPAA-2017_CNN_SED.ipynb │ └── training.log ├── parameters.json ├── scripts ├── README.md ├── data_augmentation.py ├── download_dataset.py ├── evaluate_model.py ├── extract_features.py ├── fine_tuning.py └── train_model.py ├── setup.py ├── tests ├── __init__.py ├── conftest.py ├── data │ ├── audio │ │ ├── 147764-4-7-0.wav │ │ ├── 176787-5-0-0.wav │ │ └── 40722-8-0-7.wav │ └── features_gt │ │ ├── MelSpectrogram │ │ ├── 147764-4-7-0.npy │ │ ├── 176787-5-0-0.npy │ │ ├── 40722-8-0-7.npy │ │ └── parameters.json │ │ └── Spectrogram │ │ ├── 147764-4-7-0.npy │ │ ├── 176787-5-0-0.npy │ │ ├── 40722-8-0-7.npy │ │ └── parameters.json ├── data_aiff │ └── audio │ │ ├── 147764-4-7-0.aiff │ │ ├── 176787-5-0-0.aiff │ │ └── 40722-8-0-7.aiff ├── imgs │ ├── features0.png │ ├── features1.png │ └── features2.png ├── models │ ├── A_CRNN │ │ └── UrbanSound8k │ │ │ ├── fold1 │ │ │ ├── best_weights.hdf5 │ │ │ ├── model.json │ │ │ └── training.log │ │ │ └── model.json │ ├── DCASE2020Task5Baseline │ │ └── UrbanSound8k │ │ │ └── model.json │ ├── SB_CNN │ │ ├── ESC10 │ │ │ ├── fold1 │ │ │ │ ├── best_weights.hdf5 │ │ │ │ └── training.log │ │ │ └── model.json │ │ ├── UrbanSound8k │ │ │ ├── fold1 │ │ │ │ ├── best_weights.hdf5 │ │ │ │ ├── model.json │ │ │ │ ├── scaler.pickle │ │ │ │ └── training.log │ │ │ ├── fold2 │ │ │ │ ├── best_weights.hdf5 │ │ │ │ ├── scaler.pickle │ │ │ │ └── training.log │ │ │ └── model.json │ │ └── UrbanSound8k_ft_ESC50 │ │ │ └── fold1 │ │ │ ├── best_weights.hdf5 │ │ │ ├── model.json │ │ │ └── training.log │ ├── SB_CNN_SED │ │ └── URBAN_SED │ │ │ ├── fold3 │ │ │ ├── best_weights.hdf5 │ │ │ └── training.log │ │ │ └── model.json │ └── VGGish │ │ └── UrbanSound8k │ │ ├── fold1 │ │ ├── best_weights.hdf5 │ │ ├── model.json │ │ └── training.log │ │ └── model.json ├── parameters.json ├── resources │ ├── datasets │ │ ├── ESC50 │ │ │ ├── audio │ │ │ │ ├── 1-100032-A-0.wav │ │ │ │ ├── 1-100038-A-14.wav │ │ │ │ └── 1-100210-A-36.wav │ │ │ ├── download.txt │ │ │ └── meta │ │ │ │ └── esc50.csv │ │ ├── FSDKaggle2018 │ │ │ ├── download.txt │ │ │ └── meta │ │ │ │ ├── test_post_competition_scoring_clips.csv │ │ │ │ └── train_post_competition.csv │ │ ├── MAVD │ │ │ ├── annotations │ │ │ │ └── train │ │ │ │ │ └── 0.txt │ │ │ └── audio │ │ │ │ └── train │ │ │ │ ├── 0.wav │ │ │ │ ├── 1.wav │ │ │ │ └── 2.wav │ │ ├── SONYC-UST │ │ │ ├── annotations.csv │ │ │ ├── audio │ │ │ │ ├── 00_000118.wav │ │ │ │ ├── 00_000275.wav │ │ │ │ ├── 41_020874.wav │ │ │ │ └── 45_006905.wav │ │ │ ├── dcase-ust-taxonomy.yaml │ │ │ └── download.txt │ │ ├── TAUUrbanAcousticScenes2019 │ │ │ ├── evaluation_setup │ │ │ │ ├── fold1_test.csv │ │ │ │ └── fold1_train.csv │ │ │ └── meta.csv │ │ ├── TUTSoundEvents2017 │ │ │ ├── evaluation_setup │ │ │ │ ├── street_fold1_test.txt │ │ │ │ ├── street_fold2_test.txt │ │ │ │ ├── street_fold3_test.txt │ │ │ │ ├── street_fold4_test.txt │ │ │ │ └── street_test.txt │ │ │ ├── meta.txt │ │ │ └── meta │ │ │ │ └── street │ │ │ │ ├── a001.ann │ │ │ │ └── b099.ann │ │ ├── URBAN-SED │ │ │ ├── annotations │ │ │ │ └── train │ │ │ │ │ └── 0.txt │ │ │ └── audio │ │ │ │ ├── test │ │ │ │ └── test0.wav │ │ │ │ ├── train │ │ │ │ ├── 0.wav │ │ │ │ ├── 1.wav │ │ │ │ └── 2.wav │ │ │ │ └── validate │ │ │ │ └── validate0.wav │ │ └── UrbanSound8k │ │ │ └── audio │ │ │ └── fold1 │ │ │ ├── 147764-4-7-0.wav │ │ │ ├── 176787-5-0-0.wav │ │ │ └── 40722-8-0-7.wav │ ├── remote.zip │ ├── sed_example.csv │ └── training.log ├── test_container.py ├── test_data_augmentation.py ├── test_data_generator.py ├── test_dataset.py ├── test_feature_extractor.py ├── test_features.py ├── test_models.py ├── test_scaler.py └── test_util.py ├── trained_models ├── MLP │ └── UrbanSound8k │ │ ├── fold1 │ │ ├── best_weights.hdf5 │ │ ├── scaler.pickle │ │ └── training.log │ │ └── model.json ├── README.md ├── SB_CNN │ ├── ESC10 │ │ ├── fold1 │ │ │ ├── best_weights.hdf5 │ │ │ ├── scaler.pickle │ │ │ └── training.log │ │ └── model.json │ ├── ESC50 │ │ ├── fold1 │ │ │ ├── best_weights.hdf5 │ │ │ ├── scaler.pickle │ │ │ └── training.log │ │ └── model.json │ ├── FSDKaggle2018 │ │ ├── model.json │ │ └── test │ │ │ ├── best_weights.hdf5 │ │ │ ├── scaler.pickle │ │ │ └── training.log │ ├── TAUUrbanAcousticScenes2019 │ │ ├── model.json │ │ └── test │ │ │ ├── best_weights.hdf5 │ │ │ ├── scaler.pickle │ │ │ └── training.log │ ├── URBAN_SED │ │ ├── model.json │ │ └── test │ │ │ └── scaler.pickle │ ├── UrbanSound8k │ │ ├── fold1 │ │ │ ├── best_weights.hdf5 │ │ │ ├── scaler.pickle │ │ │ └── training.log │ │ └── model.json │ └── UrbanSound8k_ft_MAVD │ │ ├── model.json │ │ └── test │ │ ├── best_weights.hdf5 │ │ ├── scaler.pickle │ │ └── training.log └── SB_CNN_SED │ ├── MAVD │ ├── model.json │ └── test │ │ ├── best_weights.hdf5 │ │ ├── scaler.pickle │ │ └── training.log │ ├── TUTSoundEvents2017 │ ├── fold1 │ │ ├── best_weights.hdf5 │ │ ├── scaler.pickle │ │ └── training.log │ └── model.json │ └── URBAN_SED │ ├── model.json │ └── test │ ├── best_weights.hdf5 │ ├── scaler.pickle │ └── training.log └── visualization ├── README.md ├── __init__.py ├── app.py ├── callbacks.py ├── figures.py ├── index.py ├── layout.py ├── models └── SB_CNN │ ├── FSDKaggle2018 │ ├── model.json │ └── test │ │ ├── best_weights.hdf5 │ │ ├── scaler.pickle │ │ └── training.log │ └── UrbanSound8k │ ├── fold1 │ ├── best_weights.hdf5 │ ├── scaler.pickle │ └── training.log │ ├── fold2 │ ├── best_weights.hdf5 │ ├── scaler.pickle │ └── training.log │ └── model.json └── upload.wav /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/pythonpublish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/.github/workflows/pythonpublish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/codecov.yml -------------------------------------------------------------------------------- /datasets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/datasets/README.md -------------------------------------------------------------------------------- /dcase_models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dcase_models/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/dcase_models/data/__init__.py -------------------------------------------------------------------------------- /dcase_models/data/data_augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/dcase_models/data/data_augmentation.py -------------------------------------------------------------------------------- /dcase_models/data/data_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/dcase_models/data/data_generator.py -------------------------------------------------------------------------------- /dcase_models/data/dataset_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/dcase_models/data/dataset_base.py -------------------------------------------------------------------------------- /dcase_models/data/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/dcase_models/data/datasets.py -------------------------------------------------------------------------------- /dcase_models/data/feature_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/dcase_models/data/feature_extractor.py -------------------------------------------------------------------------------- /dcase_models/data/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/dcase_models/data/features.py -------------------------------------------------------------------------------- /dcase_models/data/scaler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/dcase_models/data/scaler.py -------------------------------------------------------------------------------- /dcase_models/example_dataset/audio/147764-4-7-0.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/dcase_models/example_dataset/audio/147764-4-7-0.wav -------------------------------------------------------------------------------- /dcase_models/example_dataset/audio/176787-5-0-0.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/dcase_models/example_dataset/audio/176787-5-0-0.wav -------------------------------------------------------------------------------- /dcase_models/example_dataset/audio/40722-8-0-7.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/dcase_models/example_dataset/audio/40722-8-0-7.wav -------------------------------------------------------------------------------- /dcase_models/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/dcase_models/model/__init__.py -------------------------------------------------------------------------------- /dcase_models/model/container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/dcase_models/model/container.py -------------------------------------------------------------------------------- /dcase_models/model/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/dcase_models/model/models.py -------------------------------------------------------------------------------- /dcase_models/model/pretrained_weights/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/dcase_models/model/pretrained_weights/README.md -------------------------------------------------------------------------------- /dcase_models/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/dcase_models/util/__init__.py -------------------------------------------------------------------------------- /dcase_models/util/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/dcase_models/util/callbacks.py -------------------------------------------------------------------------------- /dcase_models/util/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/dcase_models/util/data.py -------------------------------------------------------------------------------- /dcase_models/util/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/dcase_models/util/events.py -------------------------------------------------------------------------------- /dcase_models/util/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/dcase_models/util/files.py -------------------------------------------------------------------------------- /dcase_models/util/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/dcase_models/util/gui.py -------------------------------------------------------------------------------- /dcase_models/util/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/dcase_models/util/metrics.py -------------------------------------------------------------------------------- /dcase_models/util/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/dcase_models/util/misc.py -------------------------------------------------------------------------------- /dcase_models/util/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/dcase_models/util/ui.py -------------------------------------------------------------------------------- /dcase_models/version.py: -------------------------------------------------------------------------------- 1 | version = '0.2.0-rc2' 2 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/_static/DCASE-class-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/docs/source/_static/DCASE-class-diagram.png -------------------------------------------------------------------------------- /docs/source/citation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/docs/source/citation.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/docs/source/data.rst -------------------------------------------------------------------------------- /docs/source/development.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/docs/source/development.rst -------------------------------------------------------------------------------- /docs/source/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/docs/source/examples.rst -------------------------------------------------------------------------------- /docs/source/examples/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/docs/source/examples/README.txt -------------------------------------------------------------------------------- /docs/source/extension.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/docs/source/extension.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/docs/source/install.rst -------------------------------------------------------------------------------- /docs/source/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/docs/source/introduction.rst -------------------------------------------------------------------------------- /docs/source/model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/docs/source/model.rst -------------------------------------------------------------------------------- /docs/source/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/docs/source/tutorial.rst -------------------------------------------------------------------------------- /docs/source/util.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/docs/source/util.rst -------------------------------------------------------------------------------- /notebooks/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/notebooks/Readme.md -------------------------------------------------------------------------------- /notebooks/basics/Model_Train_and_evaluate.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/notebooks/basics/Model_Train_and_evaluate.ipynb -------------------------------------------------------------------------------- /notebooks/basics/data_augmentation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/notebooks/basics/data_augmentation.ipynb -------------------------------------------------------------------------------- /notebooks/basics/download_and_prepare_datasets.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/notebooks/basics/download_and_prepare_datasets.ipynb -------------------------------------------------------------------------------- /notebooks/basics/feature_extraction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/notebooks/basics/feature_extraction.ipynb -------------------------------------------------------------------------------- /notebooks/basics/output/basics/best_weights.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/notebooks/basics/output/basics/best_weights.hdf5 -------------------------------------------------------------------------------- /notebooks/basics/output/basics/training.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/notebooks/basics/output/basics/training.log -------------------------------------------------------------------------------- /notebooks/challenges/2020_Task_1/DCASE_Challenge_2020_-_Task_1_-_Acoustic_scene_classification.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/notebooks/challenges/2020_Task_1/DCASE_Challenge_2020_-_Task_1_-_Acoustic_scene_classification.ipynb -------------------------------------------------------------------------------- /notebooks/papers/A_CRNN/best_weights.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/notebooks/papers/A_CRNN/best_weights.hdf5 -------------------------------------------------------------------------------- /notebooks/papers/A_CRNN/paper_Adavanne_et_al_ICASSP_2017_A_CRNN.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/notebooks/papers/A_CRNN/paper_Adavanne_et_al_ICASSP_2017_A_CRNN.ipynb -------------------------------------------------------------------------------- /notebooks/papers/A_CRNN/training.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/notebooks/papers/A_CRNN/training.log -------------------------------------------------------------------------------- /notebooks/papers/SB_CNN/best_weights.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/notebooks/papers/SB_CNN/best_weights.hdf5 -------------------------------------------------------------------------------- /notebooks/papers/SB_CNN/paper_SalamonBello_IEEE-Signal-Process-Lett-2017_CNN.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/notebooks/papers/SB_CNN/paper_SalamonBello_IEEE-Signal-Process-Lett-2017_CNN.ipynb -------------------------------------------------------------------------------- /notebooks/papers/SB_CNN/training.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/notebooks/papers/SB_CNN/training.log -------------------------------------------------------------------------------- /notebooks/papers/SB_CNN_SED/best_weights.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/notebooks/papers/SB_CNN_SED/best_weights.hdf5 -------------------------------------------------------------------------------- /notebooks/papers/SB_CNN_SED/paper_SalamonBello_IEEE-WASPAA-2017_CNN_SED.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/notebooks/papers/SB_CNN_SED/paper_SalamonBello_IEEE-WASPAA-2017_CNN_SED.ipynb -------------------------------------------------------------------------------- /notebooks/papers/SB_CNN_SED/training.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/notebooks/papers/SB_CNN_SED/training.log -------------------------------------------------------------------------------- /parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/parameters.json -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/data_augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/scripts/data_augmentation.py -------------------------------------------------------------------------------- /scripts/download_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/scripts/download_dataset.py -------------------------------------------------------------------------------- /scripts/evaluate_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/scripts/evaluate_model.py -------------------------------------------------------------------------------- /scripts/extract_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/scripts/extract_features.py -------------------------------------------------------------------------------- /scripts/fine_tuning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/scripts/fine_tuning.py -------------------------------------------------------------------------------- /scripts/train_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/scripts/train_model.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/audio/147764-4-7-0.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/data/audio/147764-4-7-0.wav -------------------------------------------------------------------------------- /tests/data/audio/176787-5-0-0.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/data/audio/176787-5-0-0.wav -------------------------------------------------------------------------------- /tests/data/audio/40722-8-0-7.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/data/audio/40722-8-0-7.wav -------------------------------------------------------------------------------- /tests/data/features_gt/MelSpectrogram/147764-4-7-0.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/data/features_gt/MelSpectrogram/147764-4-7-0.npy -------------------------------------------------------------------------------- /tests/data/features_gt/MelSpectrogram/176787-5-0-0.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/data/features_gt/MelSpectrogram/176787-5-0-0.npy -------------------------------------------------------------------------------- /tests/data/features_gt/MelSpectrogram/40722-8-0-7.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/data/features_gt/MelSpectrogram/40722-8-0-7.npy -------------------------------------------------------------------------------- /tests/data/features_gt/MelSpectrogram/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/data/features_gt/MelSpectrogram/parameters.json -------------------------------------------------------------------------------- /tests/data/features_gt/Spectrogram/147764-4-7-0.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/data/features_gt/Spectrogram/147764-4-7-0.npy -------------------------------------------------------------------------------- /tests/data/features_gt/Spectrogram/176787-5-0-0.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/data/features_gt/Spectrogram/176787-5-0-0.npy -------------------------------------------------------------------------------- /tests/data/features_gt/Spectrogram/40722-8-0-7.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/data/features_gt/Spectrogram/40722-8-0-7.npy -------------------------------------------------------------------------------- /tests/data/features_gt/Spectrogram/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/data/features_gt/Spectrogram/parameters.json -------------------------------------------------------------------------------- /tests/data_aiff/audio/147764-4-7-0.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/data_aiff/audio/147764-4-7-0.aiff -------------------------------------------------------------------------------- /tests/data_aiff/audio/176787-5-0-0.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/data_aiff/audio/176787-5-0-0.aiff -------------------------------------------------------------------------------- /tests/data_aiff/audio/40722-8-0-7.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/data_aiff/audio/40722-8-0-7.aiff -------------------------------------------------------------------------------- /tests/imgs/features0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/imgs/features0.png -------------------------------------------------------------------------------- /tests/imgs/features1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/imgs/features1.png -------------------------------------------------------------------------------- /tests/imgs/features2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/imgs/features2.png -------------------------------------------------------------------------------- /tests/models/A_CRNN/UrbanSound8k/fold1/best_weights.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/models/A_CRNN/UrbanSound8k/fold1/best_weights.hdf5 -------------------------------------------------------------------------------- /tests/models/A_CRNN/UrbanSound8k/fold1/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/models/A_CRNN/UrbanSound8k/fold1/model.json -------------------------------------------------------------------------------- /tests/models/A_CRNN/UrbanSound8k/fold1/training.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/models/A_CRNN/UrbanSound8k/fold1/training.log -------------------------------------------------------------------------------- /tests/models/A_CRNN/UrbanSound8k/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/models/A_CRNN/UrbanSound8k/model.json -------------------------------------------------------------------------------- /tests/models/DCASE2020Task5Baseline/UrbanSound8k/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/models/DCASE2020Task5Baseline/UrbanSound8k/model.json -------------------------------------------------------------------------------- /tests/models/SB_CNN/ESC10/fold1/best_weights.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/models/SB_CNN/ESC10/fold1/best_weights.hdf5 -------------------------------------------------------------------------------- /tests/models/SB_CNN/ESC10/fold1/training.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/models/SB_CNN/ESC10/fold1/training.log -------------------------------------------------------------------------------- /tests/models/SB_CNN/ESC10/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/models/SB_CNN/ESC10/model.json -------------------------------------------------------------------------------- /tests/models/SB_CNN/UrbanSound8k/fold1/best_weights.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/models/SB_CNN/UrbanSound8k/fold1/best_weights.hdf5 -------------------------------------------------------------------------------- /tests/models/SB_CNN/UrbanSound8k/fold1/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/models/SB_CNN/UrbanSound8k/fold1/model.json -------------------------------------------------------------------------------- /tests/models/SB_CNN/UrbanSound8k/fold1/scaler.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/models/SB_CNN/UrbanSound8k/fold1/scaler.pickle -------------------------------------------------------------------------------- /tests/models/SB_CNN/UrbanSound8k/fold1/training.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/models/SB_CNN/UrbanSound8k/fold1/training.log -------------------------------------------------------------------------------- /tests/models/SB_CNN/UrbanSound8k/fold2/best_weights.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/models/SB_CNN/UrbanSound8k/fold2/best_weights.hdf5 -------------------------------------------------------------------------------- /tests/models/SB_CNN/UrbanSound8k/fold2/scaler.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/models/SB_CNN/UrbanSound8k/fold2/scaler.pickle -------------------------------------------------------------------------------- /tests/models/SB_CNN/UrbanSound8k/fold2/training.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/models/SB_CNN/UrbanSound8k/fold2/training.log -------------------------------------------------------------------------------- /tests/models/SB_CNN/UrbanSound8k/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/models/SB_CNN/UrbanSound8k/model.json -------------------------------------------------------------------------------- /tests/models/SB_CNN/UrbanSound8k_ft_ESC50/fold1/best_weights.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/models/SB_CNN/UrbanSound8k_ft_ESC50/fold1/best_weights.hdf5 -------------------------------------------------------------------------------- /tests/models/SB_CNN/UrbanSound8k_ft_ESC50/fold1/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/models/SB_CNN/UrbanSound8k_ft_ESC50/fold1/model.json -------------------------------------------------------------------------------- /tests/models/SB_CNN/UrbanSound8k_ft_ESC50/fold1/training.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/models/SB_CNN/UrbanSound8k_ft_ESC50/fold1/training.log -------------------------------------------------------------------------------- /tests/models/SB_CNN_SED/URBAN_SED/fold3/best_weights.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/models/SB_CNN_SED/URBAN_SED/fold3/best_weights.hdf5 -------------------------------------------------------------------------------- /tests/models/SB_CNN_SED/URBAN_SED/fold3/training.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/models/SB_CNN_SED/URBAN_SED/fold3/training.log -------------------------------------------------------------------------------- /tests/models/SB_CNN_SED/URBAN_SED/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/models/SB_CNN_SED/URBAN_SED/model.json -------------------------------------------------------------------------------- /tests/models/VGGish/UrbanSound8k/fold1/best_weights.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/models/VGGish/UrbanSound8k/fold1/best_weights.hdf5 -------------------------------------------------------------------------------- /tests/models/VGGish/UrbanSound8k/fold1/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/models/VGGish/UrbanSound8k/fold1/model.json -------------------------------------------------------------------------------- /tests/models/VGGish/UrbanSound8k/fold1/training.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/models/VGGish/UrbanSound8k/fold1/training.log -------------------------------------------------------------------------------- /tests/models/VGGish/UrbanSound8k/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/models/VGGish/UrbanSound8k/model.json -------------------------------------------------------------------------------- /tests/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/parameters.json -------------------------------------------------------------------------------- /tests/resources/datasets/ESC50/audio/1-100032-A-0.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/datasets/ESC50/audio/1-100038-A-14.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/datasets/ESC50/audio/1-100210-A-36.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/datasets/ESC50/download.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/datasets/ESC50/meta/esc50.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/resources/datasets/ESC50/meta/esc50.csv -------------------------------------------------------------------------------- /tests/resources/datasets/FSDKaggle2018/download.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/datasets/FSDKaggle2018/meta/test_post_competition_scoring_clips.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/resources/datasets/FSDKaggle2018/meta/test_post_competition_scoring_clips.csv -------------------------------------------------------------------------------- /tests/resources/datasets/FSDKaggle2018/meta/train_post_competition.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/resources/datasets/FSDKaggle2018/meta/train_post_competition.csv -------------------------------------------------------------------------------- /tests/resources/datasets/MAVD/annotations/train/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/resources/datasets/MAVD/annotations/train/0.txt -------------------------------------------------------------------------------- /tests/resources/datasets/MAVD/audio/train/0.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/datasets/MAVD/audio/train/1.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/datasets/MAVD/audio/train/2.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/datasets/SONYC-UST/annotations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/resources/datasets/SONYC-UST/annotations.csv -------------------------------------------------------------------------------- /tests/resources/datasets/SONYC-UST/audio/00_000118.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/datasets/SONYC-UST/audio/00_000275.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/datasets/SONYC-UST/audio/41_020874.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/datasets/SONYC-UST/audio/45_006905.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/datasets/SONYC-UST/dcase-ust-taxonomy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/resources/datasets/SONYC-UST/dcase-ust-taxonomy.yaml -------------------------------------------------------------------------------- /tests/resources/datasets/SONYC-UST/download.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/datasets/TAUUrbanAcousticScenes2019/evaluation_setup/fold1_test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/resources/datasets/TAUUrbanAcousticScenes2019/evaluation_setup/fold1_test.csv -------------------------------------------------------------------------------- /tests/resources/datasets/TAUUrbanAcousticScenes2019/evaluation_setup/fold1_train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/resources/datasets/TAUUrbanAcousticScenes2019/evaluation_setup/fold1_train.csv -------------------------------------------------------------------------------- /tests/resources/datasets/TAUUrbanAcousticScenes2019/meta.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/resources/datasets/TAUUrbanAcousticScenes2019/meta.csv -------------------------------------------------------------------------------- /tests/resources/datasets/TUTSoundEvents2017/evaluation_setup/street_fold1_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/resources/datasets/TUTSoundEvents2017/evaluation_setup/street_fold1_test.txt -------------------------------------------------------------------------------- /tests/resources/datasets/TUTSoundEvents2017/evaluation_setup/street_fold2_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/resources/datasets/TUTSoundEvents2017/evaluation_setup/street_fold2_test.txt -------------------------------------------------------------------------------- /tests/resources/datasets/TUTSoundEvents2017/evaluation_setup/street_fold3_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/resources/datasets/TUTSoundEvents2017/evaluation_setup/street_fold3_test.txt -------------------------------------------------------------------------------- /tests/resources/datasets/TUTSoundEvents2017/evaluation_setup/street_fold4_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/resources/datasets/TUTSoundEvents2017/evaluation_setup/street_fold4_test.txt -------------------------------------------------------------------------------- /tests/resources/datasets/TUTSoundEvents2017/evaluation_setup/street_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/resources/datasets/TUTSoundEvents2017/evaluation_setup/street_test.txt -------------------------------------------------------------------------------- /tests/resources/datasets/TUTSoundEvents2017/meta.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/resources/datasets/TUTSoundEvents2017/meta.txt -------------------------------------------------------------------------------- /tests/resources/datasets/TUTSoundEvents2017/meta/street/a001.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/resources/datasets/TUTSoundEvents2017/meta/street/a001.ann -------------------------------------------------------------------------------- /tests/resources/datasets/TUTSoundEvents2017/meta/street/b099.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/resources/datasets/TUTSoundEvents2017/meta/street/b099.ann -------------------------------------------------------------------------------- /tests/resources/datasets/URBAN-SED/annotations/train/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/resources/datasets/URBAN-SED/annotations/train/0.txt -------------------------------------------------------------------------------- /tests/resources/datasets/URBAN-SED/audio/test/test0.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/datasets/URBAN-SED/audio/train/0.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/datasets/URBAN-SED/audio/train/1.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/datasets/URBAN-SED/audio/train/2.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/datasets/URBAN-SED/audio/validate/validate0.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/datasets/UrbanSound8k/audio/fold1/147764-4-7-0.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/datasets/UrbanSound8k/audio/fold1/176787-5-0-0.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/datasets/UrbanSound8k/audio/fold1/40722-8-0-7.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/remote.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/resources/remote.zip -------------------------------------------------------------------------------- /tests/resources/sed_example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/resources/sed_example.csv -------------------------------------------------------------------------------- /tests/resources/training.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/resources/training.log -------------------------------------------------------------------------------- /tests/test_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/test_container.py -------------------------------------------------------------------------------- /tests/test_data_augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/test_data_augmentation.py -------------------------------------------------------------------------------- /tests/test_data_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/test_data_generator.py -------------------------------------------------------------------------------- /tests/test_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/test_dataset.py -------------------------------------------------------------------------------- /tests/test_feature_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/test_feature_extractor.py -------------------------------------------------------------------------------- /tests/test_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/test_features.py -------------------------------------------------------------------------------- /tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/test_models.py -------------------------------------------------------------------------------- /tests/test_scaler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/test_scaler.py -------------------------------------------------------------------------------- /tests/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/tests/test_util.py -------------------------------------------------------------------------------- /trained_models/MLP/UrbanSound8k/fold1/best_weights.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/trained_models/MLP/UrbanSound8k/fold1/best_weights.hdf5 -------------------------------------------------------------------------------- /trained_models/MLP/UrbanSound8k/fold1/scaler.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/trained_models/MLP/UrbanSound8k/fold1/scaler.pickle -------------------------------------------------------------------------------- /trained_models/MLP/UrbanSound8k/fold1/training.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/trained_models/MLP/UrbanSound8k/fold1/training.log -------------------------------------------------------------------------------- /trained_models/MLP/UrbanSound8k/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/trained_models/MLP/UrbanSound8k/model.json -------------------------------------------------------------------------------- /trained_models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/trained_models/README.md -------------------------------------------------------------------------------- /trained_models/SB_CNN/ESC10/fold1/best_weights.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/trained_models/SB_CNN/ESC10/fold1/best_weights.hdf5 -------------------------------------------------------------------------------- /trained_models/SB_CNN/ESC10/fold1/scaler.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/trained_models/SB_CNN/ESC10/fold1/scaler.pickle -------------------------------------------------------------------------------- /trained_models/SB_CNN/ESC10/fold1/training.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/trained_models/SB_CNN/ESC10/fold1/training.log -------------------------------------------------------------------------------- /trained_models/SB_CNN/ESC10/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/trained_models/SB_CNN/ESC10/model.json -------------------------------------------------------------------------------- /trained_models/SB_CNN/ESC50/fold1/best_weights.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/trained_models/SB_CNN/ESC50/fold1/best_weights.hdf5 -------------------------------------------------------------------------------- /trained_models/SB_CNN/ESC50/fold1/scaler.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/trained_models/SB_CNN/ESC50/fold1/scaler.pickle -------------------------------------------------------------------------------- /trained_models/SB_CNN/ESC50/fold1/training.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/trained_models/SB_CNN/ESC50/fold1/training.log -------------------------------------------------------------------------------- /trained_models/SB_CNN/ESC50/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/trained_models/SB_CNN/ESC50/model.json -------------------------------------------------------------------------------- /trained_models/SB_CNN/FSDKaggle2018/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/trained_models/SB_CNN/FSDKaggle2018/model.json -------------------------------------------------------------------------------- /trained_models/SB_CNN/FSDKaggle2018/test/best_weights.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/trained_models/SB_CNN/FSDKaggle2018/test/best_weights.hdf5 -------------------------------------------------------------------------------- /trained_models/SB_CNN/FSDKaggle2018/test/scaler.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/trained_models/SB_CNN/FSDKaggle2018/test/scaler.pickle -------------------------------------------------------------------------------- /trained_models/SB_CNN/FSDKaggle2018/test/training.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/trained_models/SB_CNN/FSDKaggle2018/test/training.log -------------------------------------------------------------------------------- /trained_models/SB_CNN/TAUUrbanAcousticScenes2019/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/trained_models/SB_CNN/TAUUrbanAcousticScenes2019/model.json -------------------------------------------------------------------------------- /trained_models/SB_CNN/TAUUrbanAcousticScenes2019/test/best_weights.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/trained_models/SB_CNN/TAUUrbanAcousticScenes2019/test/best_weights.hdf5 -------------------------------------------------------------------------------- /trained_models/SB_CNN/TAUUrbanAcousticScenes2019/test/scaler.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/trained_models/SB_CNN/TAUUrbanAcousticScenes2019/test/scaler.pickle -------------------------------------------------------------------------------- /trained_models/SB_CNN/TAUUrbanAcousticScenes2019/test/training.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/trained_models/SB_CNN/TAUUrbanAcousticScenes2019/test/training.log -------------------------------------------------------------------------------- /trained_models/SB_CNN/URBAN_SED/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/trained_models/SB_CNN/URBAN_SED/model.json -------------------------------------------------------------------------------- /trained_models/SB_CNN/URBAN_SED/test/scaler.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/trained_models/SB_CNN/URBAN_SED/test/scaler.pickle -------------------------------------------------------------------------------- /trained_models/SB_CNN/UrbanSound8k/fold1/best_weights.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/trained_models/SB_CNN/UrbanSound8k/fold1/best_weights.hdf5 -------------------------------------------------------------------------------- /trained_models/SB_CNN/UrbanSound8k/fold1/scaler.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/trained_models/SB_CNN/UrbanSound8k/fold1/scaler.pickle -------------------------------------------------------------------------------- /trained_models/SB_CNN/UrbanSound8k/fold1/training.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/trained_models/SB_CNN/UrbanSound8k/fold1/training.log -------------------------------------------------------------------------------- /trained_models/SB_CNN/UrbanSound8k/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/trained_models/SB_CNN/UrbanSound8k/model.json -------------------------------------------------------------------------------- /trained_models/SB_CNN/UrbanSound8k_ft_MAVD/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/trained_models/SB_CNN/UrbanSound8k_ft_MAVD/model.json -------------------------------------------------------------------------------- /trained_models/SB_CNN/UrbanSound8k_ft_MAVD/test/best_weights.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/trained_models/SB_CNN/UrbanSound8k_ft_MAVD/test/best_weights.hdf5 -------------------------------------------------------------------------------- /trained_models/SB_CNN/UrbanSound8k_ft_MAVD/test/scaler.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/trained_models/SB_CNN/UrbanSound8k_ft_MAVD/test/scaler.pickle -------------------------------------------------------------------------------- /trained_models/SB_CNN/UrbanSound8k_ft_MAVD/test/training.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/trained_models/SB_CNN/UrbanSound8k_ft_MAVD/test/training.log -------------------------------------------------------------------------------- /trained_models/SB_CNN_SED/MAVD/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/trained_models/SB_CNN_SED/MAVD/model.json -------------------------------------------------------------------------------- /trained_models/SB_CNN_SED/MAVD/test/best_weights.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/trained_models/SB_CNN_SED/MAVD/test/best_weights.hdf5 -------------------------------------------------------------------------------- /trained_models/SB_CNN_SED/MAVD/test/scaler.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/trained_models/SB_CNN_SED/MAVD/test/scaler.pickle -------------------------------------------------------------------------------- /trained_models/SB_CNN_SED/MAVD/test/training.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/trained_models/SB_CNN_SED/MAVD/test/training.log -------------------------------------------------------------------------------- /trained_models/SB_CNN_SED/TUTSoundEvents2017/fold1/best_weights.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/trained_models/SB_CNN_SED/TUTSoundEvents2017/fold1/best_weights.hdf5 -------------------------------------------------------------------------------- /trained_models/SB_CNN_SED/TUTSoundEvents2017/fold1/scaler.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/trained_models/SB_CNN_SED/TUTSoundEvents2017/fold1/scaler.pickle -------------------------------------------------------------------------------- /trained_models/SB_CNN_SED/TUTSoundEvents2017/fold1/training.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/trained_models/SB_CNN_SED/TUTSoundEvents2017/fold1/training.log -------------------------------------------------------------------------------- /trained_models/SB_CNN_SED/TUTSoundEvents2017/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/trained_models/SB_CNN_SED/TUTSoundEvents2017/model.json -------------------------------------------------------------------------------- /trained_models/SB_CNN_SED/URBAN_SED/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/trained_models/SB_CNN_SED/URBAN_SED/model.json -------------------------------------------------------------------------------- /trained_models/SB_CNN_SED/URBAN_SED/test/best_weights.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/trained_models/SB_CNN_SED/URBAN_SED/test/best_weights.hdf5 -------------------------------------------------------------------------------- /trained_models/SB_CNN_SED/URBAN_SED/test/scaler.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/trained_models/SB_CNN_SED/URBAN_SED/test/scaler.pickle -------------------------------------------------------------------------------- /trained_models/SB_CNN_SED/URBAN_SED/test/training.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/trained_models/SB_CNN_SED/URBAN_SED/test/training.log -------------------------------------------------------------------------------- /visualization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/visualization/README.md -------------------------------------------------------------------------------- /visualization/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /visualization/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/visualization/app.py -------------------------------------------------------------------------------- /visualization/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/visualization/callbacks.py -------------------------------------------------------------------------------- /visualization/figures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/visualization/figures.py -------------------------------------------------------------------------------- /visualization/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/visualization/index.py -------------------------------------------------------------------------------- /visualization/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/visualization/layout.py -------------------------------------------------------------------------------- /visualization/models/SB_CNN/FSDKaggle2018/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/visualization/models/SB_CNN/FSDKaggle2018/model.json -------------------------------------------------------------------------------- /visualization/models/SB_CNN/FSDKaggle2018/test/best_weights.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/visualization/models/SB_CNN/FSDKaggle2018/test/best_weights.hdf5 -------------------------------------------------------------------------------- /visualization/models/SB_CNN/FSDKaggle2018/test/scaler.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/visualization/models/SB_CNN/FSDKaggle2018/test/scaler.pickle -------------------------------------------------------------------------------- /visualization/models/SB_CNN/FSDKaggle2018/test/training.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/visualization/models/SB_CNN/FSDKaggle2018/test/training.log -------------------------------------------------------------------------------- /visualization/models/SB_CNN/UrbanSound8k/fold1/best_weights.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/visualization/models/SB_CNN/UrbanSound8k/fold1/best_weights.hdf5 -------------------------------------------------------------------------------- /visualization/models/SB_CNN/UrbanSound8k/fold1/scaler.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/visualization/models/SB_CNN/UrbanSound8k/fold1/scaler.pickle -------------------------------------------------------------------------------- /visualization/models/SB_CNN/UrbanSound8k/fold1/training.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/visualization/models/SB_CNN/UrbanSound8k/fold1/training.log -------------------------------------------------------------------------------- /visualization/models/SB_CNN/UrbanSound8k/fold2/best_weights.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/visualization/models/SB_CNN/UrbanSound8k/fold2/best_weights.hdf5 -------------------------------------------------------------------------------- /visualization/models/SB_CNN/UrbanSound8k/fold2/scaler.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/visualization/models/SB_CNN/UrbanSound8k/fold2/scaler.pickle -------------------------------------------------------------------------------- /visualization/models/SB_CNN/UrbanSound8k/fold2/training.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/visualization/models/SB_CNN/UrbanSound8k/fold2/training.log -------------------------------------------------------------------------------- /visualization/models/SB_CNN/UrbanSound8k/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/visualization/models/SB_CNN/UrbanSound8k/model.json -------------------------------------------------------------------------------- /visualization/upload.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG/DCASE-models/HEAD/visualization/upload.wav --------------------------------------------------------------------------------