├── .gitignore ├── EULA.pdf ├── README.html ├── README.md ├── requirements.txt ├── src ├── __init__.py ├── dataset.py ├── evaluation.py ├── features.py ├── files.py ├── general.py ├── sound_event_detection.py └── ui.py ├── task1_scene_classification.py ├── task1_scene_classification.yaml ├── task3_sound_event_detection_in_real_life_audio.py └── task3_sound_event_detection_in_real_life_audio.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ARG/DCASE2016-baseline-system-python/HEAD/.gitignore -------------------------------------------------------------------------------- /EULA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ARG/DCASE2016-baseline-system-python/HEAD/EULA.pdf -------------------------------------------------------------------------------- /README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ARG/DCASE2016-baseline-system-python/HEAD/README.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ARG/DCASE2016-baseline-system-python/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ARG/DCASE2016-baseline-system-python/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ARG/DCASE2016-baseline-system-python/HEAD/src/dataset.py -------------------------------------------------------------------------------- /src/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ARG/DCASE2016-baseline-system-python/HEAD/src/evaluation.py -------------------------------------------------------------------------------- /src/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ARG/DCASE2016-baseline-system-python/HEAD/src/features.py -------------------------------------------------------------------------------- /src/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ARG/DCASE2016-baseline-system-python/HEAD/src/files.py -------------------------------------------------------------------------------- /src/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ARG/DCASE2016-baseline-system-python/HEAD/src/general.py -------------------------------------------------------------------------------- /src/sound_event_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ARG/DCASE2016-baseline-system-python/HEAD/src/sound_event_detection.py -------------------------------------------------------------------------------- /src/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ARG/DCASE2016-baseline-system-python/HEAD/src/ui.py -------------------------------------------------------------------------------- /task1_scene_classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ARG/DCASE2016-baseline-system-python/HEAD/task1_scene_classification.py -------------------------------------------------------------------------------- /task1_scene_classification.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ARG/DCASE2016-baseline-system-python/HEAD/task1_scene_classification.yaml -------------------------------------------------------------------------------- /task3_sound_event_detection_in_real_life_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ARG/DCASE2016-baseline-system-python/HEAD/task3_sound_event_detection_in_real_life_audio.py -------------------------------------------------------------------------------- /task3_sound_event_detection_in_real_life_audio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ARG/DCASE2016-baseline-system-python/HEAD/task3_sound_event_detection_in_real_life_audio.yaml --------------------------------------------------------------------------------