├── .gitignore ├── LICENSE ├── MODULATION SPECTRAL SIGNAL REPRESENTATIONAND I-VECTORS FOR ANOMALOUS SOUND DETECTION.pdf ├── README.md ├── bin ├── .DS_Store ├── ensemble │ ├── .DS_Store │ ├── ens.py │ ├── ensemble_dev_data_results.csv │ └── individual_scores │ │ ├── .DS_Store │ │ ├── dev │ │ ├── iVectors_gmm_dev_data.pickle │ │ └── modspec_graph_dev_data.pickle │ │ └── eval │ │ ├── iVectors_gmm_eval_data.pickle │ │ └── modspec_graph_eval_data.pickle ├── iVectors_gmm │ ├── gmm.py │ └── iVectors_gmm_dev_data_results.csv └── modspec_graph │ ├── .DS_Store │ ├── graph_anom_detection.py │ ├── modspec_graph_dev_data_results.csv │ └── utils.py ├── dev_data └── .gitignore ├── download_dev_data.sh ├── download_eval_data.sh ├── eval_data └── .gitignore ├── saved_iVectors ├── .gitignore └── ivector_mfcc_100.zip └── task2 ├── .DS_Store ├── .gitignore └── Tiwari_IITKGP_task2_1 └── .DS_Store /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parth2170/DCASE2020-Task2/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parth2170/DCASE2020-Task2/HEAD/LICENSE -------------------------------------------------------------------------------- /MODULATION SPECTRAL SIGNAL REPRESENTATIONAND I-VECTORS FOR ANOMALOUS SOUND DETECTION.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parth2170/DCASE2020-Task2/HEAD/MODULATION SPECTRAL SIGNAL REPRESENTATIONAND I-VECTORS FOR ANOMALOUS SOUND DETECTION.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parth2170/DCASE2020-Task2/HEAD/README.md -------------------------------------------------------------------------------- /bin/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parth2170/DCASE2020-Task2/HEAD/bin/.DS_Store -------------------------------------------------------------------------------- /bin/ensemble/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parth2170/DCASE2020-Task2/HEAD/bin/ensemble/.DS_Store -------------------------------------------------------------------------------- /bin/ensemble/ens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parth2170/DCASE2020-Task2/HEAD/bin/ensemble/ens.py -------------------------------------------------------------------------------- /bin/ensemble/ensemble_dev_data_results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parth2170/DCASE2020-Task2/HEAD/bin/ensemble/ensemble_dev_data_results.csv -------------------------------------------------------------------------------- /bin/ensemble/individual_scores/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parth2170/DCASE2020-Task2/HEAD/bin/ensemble/individual_scores/.DS_Store -------------------------------------------------------------------------------- /bin/ensemble/individual_scores/dev/iVectors_gmm_dev_data.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parth2170/DCASE2020-Task2/HEAD/bin/ensemble/individual_scores/dev/iVectors_gmm_dev_data.pickle -------------------------------------------------------------------------------- /bin/ensemble/individual_scores/dev/modspec_graph_dev_data.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parth2170/DCASE2020-Task2/HEAD/bin/ensemble/individual_scores/dev/modspec_graph_dev_data.pickle -------------------------------------------------------------------------------- /bin/ensemble/individual_scores/eval/iVectors_gmm_eval_data.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parth2170/DCASE2020-Task2/HEAD/bin/ensemble/individual_scores/eval/iVectors_gmm_eval_data.pickle -------------------------------------------------------------------------------- /bin/ensemble/individual_scores/eval/modspec_graph_eval_data.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parth2170/DCASE2020-Task2/HEAD/bin/ensemble/individual_scores/eval/modspec_graph_eval_data.pickle -------------------------------------------------------------------------------- /bin/iVectors_gmm/gmm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parth2170/DCASE2020-Task2/HEAD/bin/iVectors_gmm/gmm.py -------------------------------------------------------------------------------- /bin/iVectors_gmm/iVectors_gmm_dev_data_results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parth2170/DCASE2020-Task2/HEAD/bin/iVectors_gmm/iVectors_gmm_dev_data_results.csv -------------------------------------------------------------------------------- /bin/modspec_graph/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parth2170/DCASE2020-Task2/HEAD/bin/modspec_graph/.DS_Store -------------------------------------------------------------------------------- /bin/modspec_graph/graph_anom_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parth2170/DCASE2020-Task2/HEAD/bin/modspec_graph/graph_anom_detection.py -------------------------------------------------------------------------------- /bin/modspec_graph/modspec_graph_dev_data_results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parth2170/DCASE2020-Task2/HEAD/bin/modspec_graph/modspec_graph_dev_data_results.csv -------------------------------------------------------------------------------- /bin/modspec_graph/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parth2170/DCASE2020-Task2/HEAD/bin/modspec_graph/utils.py -------------------------------------------------------------------------------- /dev_data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parth2170/DCASE2020-Task2/HEAD/dev_data/.gitignore -------------------------------------------------------------------------------- /download_dev_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parth2170/DCASE2020-Task2/HEAD/download_dev_data.sh -------------------------------------------------------------------------------- /download_eval_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parth2170/DCASE2020-Task2/HEAD/download_eval_data.sh -------------------------------------------------------------------------------- /eval_data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parth2170/DCASE2020-Task2/HEAD/eval_data/.gitignore -------------------------------------------------------------------------------- /saved_iVectors/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parth2170/DCASE2020-Task2/HEAD/saved_iVectors/.gitignore -------------------------------------------------------------------------------- /saved_iVectors/ivector_mfcc_100.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parth2170/DCASE2020-Task2/HEAD/saved_iVectors/ivector_mfcc_100.zip -------------------------------------------------------------------------------- /task2/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parth2170/DCASE2020-Task2/HEAD/task2/.DS_Store -------------------------------------------------------------------------------- /task2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parth2170/DCASE2020-Task2/HEAD/task2/.gitignore -------------------------------------------------------------------------------- /task2/Tiwari_IITKGP_task2_1/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parth2170/DCASE2020-Task2/HEAD/task2/Tiwari_IITKGP_task2_1/.DS_Store --------------------------------------------------------------------------------