├── .gitignore ├── README.md ├── __init__.py ├── model_of_paper ├── 5_speakers.wav ├── RNN_keras2.h5 ├── evaluate_all.ipynb ├── predict_speakers_count.ipynb └── scaler.npz ├── pictures ├── counter.png ├── model_brief.png ├── model_detailed.PNG ├── model_detailed2.png ├── my_model.png └── time_in_seconds.png ├── prepare_dataset.ipynb ├── prepare_dataset.py ├── references ├── Classification vs. Regression in Supervised Learning for Single Channel Speaker Count Estimation .pdf └── Singing voice detection with deep recurrent neural networks.pdf ├── train_cnn.ipynb └── train_stft_cnn.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aishoot/Concurrent_Speakers_Counter/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aishoot/Concurrent_Speakers_Counter/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aishoot/Concurrent_Speakers_Counter/HEAD/__init__.py -------------------------------------------------------------------------------- /model_of_paper/5_speakers.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aishoot/Concurrent_Speakers_Counter/HEAD/model_of_paper/5_speakers.wav -------------------------------------------------------------------------------- /model_of_paper/RNN_keras2.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aishoot/Concurrent_Speakers_Counter/HEAD/model_of_paper/RNN_keras2.h5 -------------------------------------------------------------------------------- /model_of_paper/evaluate_all.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aishoot/Concurrent_Speakers_Counter/HEAD/model_of_paper/evaluate_all.ipynb -------------------------------------------------------------------------------- /model_of_paper/predict_speakers_count.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aishoot/Concurrent_Speakers_Counter/HEAD/model_of_paper/predict_speakers_count.ipynb -------------------------------------------------------------------------------- /model_of_paper/scaler.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aishoot/Concurrent_Speakers_Counter/HEAD/model_of_paper/scaler.npz -------------------------------------------------------------------------------- /pictures/counter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aishoot/Concurrent_Speakers_Counter/HEAD/pictures/counter.png -------------------------------------------------------------------------------- /pictures/model_brief.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aishoot/Concurrent_Speakers_Counter/HEAD/pictures/model_brief.png -------------------------------------------------------------------------------- /pictures/model_detailed.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aishoot/Concurrent_Speakers_Counter/HEAD/pictures/model_detailed.PNG -------------------------------------------------------------------------------- /pictures/model_detailed2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aishoot/Concurrent_Speakers_Counter/HEAD/pictures/model_detailed2.png -------------------------------------------------------------------------------- /pictures/my_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aishoot/Concurrent_Speakers_Counter/HEAD/pictures/my_model.png -------------------------------------------------------------------------------- /pictures/time_in_seconds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aishoot/Concurrent_Speakers_Counter/HEAD/pictures/time_in_seconds.png -------------------------------------------------------------------------------- /prepare_dataset.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aishoot/Concurrent_Speakers_Counter/HEAD/prepare_dataset.ipynb -------------------------------------------------------------------------------- /prepare_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aishoot/Concurrent_Speakers_Counter/HEAD/prepare_dataset.py -------------------------------------------------------------------------------- /references/Classification vs. Regression in Supervised Learning for Single Channel Speaker Count Estimation .pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aishoot/Concurrent_Speakers_Counter/HEAD/references/Classification vs. Regression in Supervised Learning for Single Channel Speaker Count Estimation .pdf -------------------------------------------------------------------------------- /references/Singing voice detection with deep recurrent neural networks.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aishoot/Concurrent_Speakers_Counter/HEAD/references/Singing voice detection with deep recurrent neural networks.pdf -------------------------------------------------------------------------------- /train_cnn.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aishoot/Concurrent_Speakers_Counter/HEAD/train_cnn.ipynb -------------------------------------------------------------------------------- /train_stft_cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aishoot/Concurrent_Speakers_Counter/HEAD/train_stft_cnn.py --------------------------------------------------------------------------------