├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── SampleData ├── Aditya_16.wav ├── Asthadi_17.wav ├── Atul_20.wav └── Karan_17.wav ├── Speakers_models ├── Aditya.gmm ├── Ankit.gmm ├── Arti.gmm ├── Asthadi.gmm ├── Atul.gmm ├── Bharti.gmm ├── Himanshu.gmm ├── Kamlesh.gmm ├── Karan.gmm ├── Katiyar.gmm ├── Khus.gmm ├── Mayank.gmm ├── Partha.gmm ├── Pooja.gmm ├── Rajeev.gmm ├── Raunak.gmm └── Shradha.gmm ├── development_set ├── anthonyschaller-20071221- │ ├── LICENSE │ ├── etc │ │ ├── GPL_License │ │ ├── HDMan_log │ │ ├── HVite_log │ │ ├── PROMPTS │ │ ├── README │ │ ├── audiofile_details │ │ └── prompts-original │ └── wav │ │ ├── a0491.wav │ │ └── a0492.wav └── arjuan-20100820-acz │ ├── LICENSE │ ├── etc │ ├── GPL_license.txt │ ├── HDMan_log │ ├── HVite_log │ ├── PROMPTS │ ├── README │ ├── audiofile_details │ └── prompts-original │ └── wav │ ├── b0217.wav │ ├── b0218.wav │ └── b0226.wav ├── development_set_enroll.txt ├── development_set_test.txt ├── documentation ├── Minor Report-Atul.docx ├── Screenshots │ ├── 1-voxForge-Model_training.png │ ├── 2-VoxForge-Identification.png │ ├── 3-SelfData-Model-Training.png │ ├── 4-SelfData-Identification.png │ ├── 5-SingleAudio-test.png │ ├── 6-CompleteSample-Test.png │ └── 7-Accuracy.png └── Speaker-Identification-PPt.pptx ├── featureextraction.py ├── modeltraining.py ├── speaker_models ├── AT.gmm ├── Apple_Eater.gmm ├── Ara.gmm ├── Artem.gmm ├── AslakKnutsen.gmm ├── B.gmm ├── Bahoke.gmm ├── Bareford.gmm ├── Bassel.gmm ├── anthonyschaller.gmm ├── argail.gmm ├── ariyan.gmm ├── arjuan.gmm ├── arthur.gmm ├── artk.gmm ├── arun.gmm ├── arvala.gmm ├── asalkeld.gmm ├── asladic.gmm ├── asp.gmm ├── atamur.gmm ├── ataru80.gmm ├── atterer.gmm ├── audioodyssey.gmm ├── avsa242.gmm ├── ax.gmm ├── axllaruse.gmm ├── azmisov.gmm ├── bachroxx.gmm ├── bae.gmm ├── bart.gmm ├── beady.gmm ├── beez1717.gmm └── belmontguy.gmm ├── test.py ├── testSamplePath.txt ├── trainingData ├── Aditya-001 │ └── Aditya_1.wav ├── Atul-005 │ └── Atul_1.wav ├── Bharti-006 │ └── Bharti_15.wav └── Partha-013 │ └── Partha_1.wav └── trainingDataPath.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/README.md -------------------------------------------------------------------------------- /SampleData/Aditya_16.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/SampleData/Aditya_16.wav -------------------------------------------------------------------------------- /SampleData/Asthadi_17.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/SampleData/Asthadi_17.wav -------------------------------------------------------------------------------- /SampleData/Atul_20.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/SampleData/Atul_20.wav -------------------------------------------------------------------------------- /SampleData/Karan_17.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/SampleData/Karan_17.wav -------------------------------------------------------------------------------- /Speakers_models/Aditya.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/Speakers_models/Aditya.gmm -------------------------------------------------------------------------------- /Speakers_models/Ankit.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/Speakers_models/Ankit.gmm -------------------------------------------------------------------------------- /Speakers_models/Arti.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/Speakers_models/Arti.gmm -------------------------------------------------------------------------------- /Speakers_models/Asthadi.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/Speakers_models/Asthadi.gmm -------------------------------------------------------------------------------- /Speakers_models/Atul.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/Speakers_models/Atul.gmm -------------------------------------------------------------------------------- /Speakers_models/Bharti.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/Speakers_models/Bharti.gmm -------------------------------------------------------------------------------- /Speakers_models/Himanshu.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/Speakers_models/Himanshu.gmm -------------------------------------------------------------------------------- /Speakers_models/Kamlesh.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/Speakers_models/Kamlesh.gmm -------------------------------------------------------------------------------- /Speakers_models/Karan.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/Speakers_models/Karan.gmm -------------------------------------------------------------------------------- /Speakers_models/Katiyar.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/Speakers_models/Katiyar.gmm -------------------------------------------------------------------------------- /Speakers_models/Khus.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/Speakers_models/Khus.gmm -------------------------------------------------------------------------------- /Speakers_models/Mayank.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/Speakers_models/Mayank.gmm -------------------------------------------------------------------------------- /Speakers_models/Partha.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/Speakers_models/Partha.gmm -------------------------------------------------------------------------------- /Speakers_models/Pooja.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/Speakers_models/Pooja.gmm -------------------------------------------------------------------------------- /Speakers_models/Rajeev.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/Speakers_models/Rajeev.gmm -------------------------------------------------------------------------------- /Speakers_models/Raunak.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/Speakers_models/Raunak.gmm -------------------------------------------------------------------------------- /Speakers_models/Shradha.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/Speakers_models/Shradha.gmm -------------------------------------------------------------------------------- /development_set/anthonyschaller-20071221-/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/development_set/anthonyschaller-20071221-/LICENSE -------------------------------------------------------------------------------- /development_set/anthonyschaller-20071221-/etc/GPL_License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/development_set/anthonyschaller-20071221-/etc/GPL_License -------------------------------------------------------------------------------- /development_set/anthonyschaller-20071221-/etc/HDMan_log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/development_set/anthonyschaller-20071221-/etc/HDMan_log -------------------------------------------------------------------------------- /development_set/anthonyschaller-20071221-/etc/HVite_log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/development_set/anthonyschaller-20071221-/etc/HVite_log -------------------------------------------------------------------------------- /development_set/anthonyschaller-20071221-/etc/PROMPTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/development_set/anthonyschaller-20071221-/etc/PROMPTS -------------------------------------------------------------------------------- /development_set/anthonyschaller-20071221-/etc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/development_set/anthonyschaller-20071221-/etc/README -------------------------------------------------------------------------------- /development_set/anthonyschaller-20071221-/etc/audiofile_details: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/development_set/anthonyschaller-20071221-/etc/audiofile_details -------------------------------------------------------------------------------- /development_set/anthonyschaller-20071221-/etc/prompts-original: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/development_set/anthonyschaller-20071221-/etc/prompts-original -------------------------------------------------------------------------------- /development_set/anthonyschaller-20071221-/wav/a0491.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/development_set/anthonyschaller-20071221-/wav/a0491.wav -------------------------------------------------------------------------------- /development_set/anthonyschaller-20071221-/wav/a0492.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/development_set/anthonyschaller-20071221-/wav/a0492.wav -------------------------------------------------------------------------------- /development_set/arjuan-20100820-acz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/development_set/arjuan-20100820-acz/LICENSE -------------------------------------------------------------------------------- /development_set/arjuan-20100820-acz/etc/GPL_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/development_set/arjuan-20100820-acz/etc/GPL_license.txt -------------------------------------------------------------------------------- /development_set/arjuan-20100820-acz/etc/HDMan_log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/development_set/arjuan-20100820-acz/etc/HDMan_log -------------------------------------------------------------------------------- /development_set/arjuan-20100820-acz/etc/HVite_log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/development_set/arjuan-20100820-acz/etc/HVite_log -------------------------------------------------------------------------------- /development_set/arjuan-20100820-acz/etc/PROMPTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/development_set/arjuan-20100820-acz/etc/PROMPTS -------------------------------------------------------------------------------- /development_set/arjuan-20100820-acz/etc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/development_set/arjuan-20100820-acz/etc/README -------------------------------------------------------------------------------- /development_set/arjuan-20100820-acz/etc/audiofile_details: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/development_set/arjuan-20100820-acz/etc/audiofile_details -------------------------------------------------------------------------------- /development_set/arjuan-20100820-acz/etc/prompts-original: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/development_set/arjuan-20100820-acz/etc/prompts-original -------------------------------------------------------------------------------- /development_set/arjuan-20100820-acz/wav/b0217.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/development_set/arjuan-20100820-acz/wav/b0217.wav -------------------------------------------------------------------------------- /development_set/arjuan-20100820-acz/wav/b0218.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/development_set/arjuan-20100820-acz/wav/b0218.wav -------------------------------------------------------------------------------- /development_set/arjuan-20100820-acz/wav/b0226.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/development_set/arjuan-20100820-acz/wav/b0226.wav -------------------------------------------------------------------------------- /development_set_enroll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/development_set_enroll.txt -------------------------------------------------------------------------------- /development_set_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/development_set_test.txt -------------------------------------------------------------------------------- /documentation/Minor Report-Atul.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/documentation/Minor Report-Atul.docx -------------------------------------------------------------------------------- /documentation/Screenshots/1-voxForge-Model_training.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/documentation/Screenshots/1-voxForge-Model_training.png -------------------------------------------------------------------------------- /documentation/Screenshots/2-VoxForge-Identification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/documentation/Screenshots/2-VoxForge-Identification.png -------------------------------------------------------------------------------- /documentation/Screenshots/3-SelfData-Model-Training.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/documentation/Screenshots/3-SelfData-Model-Training.png -------------------------------------------------------------------------------- /documentation/Screenshots/4-SelfData-Identification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/documentation/Screenshots/4-SelfData-Identification.png -------------------------------------------------------------------------------- /documentation/Screenshots/5-SingleAudio-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/documentation/Screenshots/5-SingleAudio-test.png -------------------------------------------------------------------------------- /documentation/Screenshots/6-CompleteSample-Test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/documentation/Screenshots/6-CompleteSample-Test.png -------------------------------------------------------------------------------- /documentation/Screenshots/7-Accuracy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/documentation/Screenshots/7-Accuracy.png -------------------------------------------------------------------------------- /documentation/Speaker-Identification-PPt.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/documentation/Speaker-Identification-PPt.pptx -------------------------------------------------------------------------------- /featureextraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/featureextraction.py -------------------------------------------------------------------------------- /modeltraining.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/modeltraining.py -------------------------------------------------------------------------------- /speaker_models/AT.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/speaker_models/AT.gmm -------------------------------------------------------------------------------- /speaker_models/Apple_Eater.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/speaker_models/Apple_Eater.gmm -------------------------------------------------------------------------------- /speaker_models/Ara.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/speaker_models/Ara.gmm -------------------------------------------------------------------------------- /speaker_models/Artem.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/speaker_models/Artem.gmm -------------------------------------------------------------------------------- /speaker_models/AslakKnutsen.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/speaker_models/AslakKnutsen.gmm -------------------------------------------------------------------------------- /speaker_models/B.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/speaker_models/B.gmm -------------------------------------------------------------------------------- /speaker_models/Bahoke.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/speaker_models/Bahoke.gmm -------------------------------------------------------------------------------- /speaker_models/Bareford.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/speaker_models/Bareford.gmm -------------------------------------------------------------------------------- /speaker_models/Bassel.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/speaker_models/Bassel.gmm -------------------------------------------------------------------------------- /speaker_models/anthonyschaller.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/speaker_models/anthonyschaller.gmm -------------------------------------------------------------------------------- /speaker_models/argail.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/speaker_models/argail.gmm -------------------------------------------------------------------------------- /speaker_models/ariyan.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/speaker_models/ariyan.gmm -------------------------------------------------------------------------------- /speaker_models/arjuan.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/speaker_models/arjuan.gmm -------------------------------------------------------------------------------- /speaker_models/arthur.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/speaker_models/arthur.gmm -------------------------------------------------------------------------------- /speaker_models/artk.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/speaker_models/artk.gmm -------------------------------------------------------------------------------- /speaker_models/arun.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/speaker_models/arun.gmm -------------------------------------------------------------------------------- /speaker_models/arvala.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/speaker_models/arvala.gmm -------------------------------------------------------------------------------- /speaker_models/asalkeld.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/speaker_models/asalkeld.gmm -------------------------------------------------------------------------------- /speaker_models/asladic.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/speaker_models/asladic.gmm -------------------------------------------------------------------------------- /speaker_models/asp.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/speaker_models/asp.gmm -------------------------------------------------------------------------------- /speaker_models/atamur.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/speaker_models/atamur.gmm -------------------------------------------------------------------------------- /speaker_models/ataru80.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/speaker_models/ataru80.gmm -------------------------------------------------------------------------------- /speaker_models/atterer.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/speaker_models/atterer.gmm -------------------------------------------------------------------------------- /speaker_models/audioodyssey.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/speaker_models/audioodyssey.gmm -------------------------------------------------------------------------------- /speaker_models/avsa242.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/speaker_models/avsa242.gmm -------------------------------------------------------------------------------- /speaker_models/ax.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/speaker_models/ax.gmm -------------------------------------------------------------------------------- /speaker_models/axllaruse.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/speaker_models/axllaruse.gmm -------------------------------------------------------------------------------- /speaker_models/azmisov.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/speaker_models/azmisov.gmm -------------------------------------------------------------------------------- /speaker_models/bachroxx.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/speaker_models/bachroxx.gmm -------------------------------------------------------------------------------- /speaker_models/bae.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/speaker_models/bae.gmm -------------------------------------------------------------------------------- /speaker_models/bart.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/speaker_models/bart.gmm -------------------------------------------------------------------------------- /speaker_models/beady.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/speaker_models/beady.gmm -------------------------------------------------------------------------------- /speaker_models/beez1717.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/speaker_models/beez1717.gmm -------------------------------------------------------------------------------- /speaker_models/belmontguy.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/speaker_models/belmontguy.gmm -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/test.py -------------------------------------------------------------------------------- /testSamplePath.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/testSamplePath.txt -------------------------------------------------------------------------------- /trainingData/Aditya-001/Aditya_1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/trainingData/Aditya-001/Aditya_1.wav -------------------------------------------------------------------------------- /trainingData/Atul-005/Atul_1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/trainingData/Atul-005/Atul_1.wav -------------------------------------------------------------------------------- /trainingData/Bharti-006/Bharti_15.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/trainingData/Bharti-006/Bharti_15.wav -------------------------------------------------------------------------------- /trainingData/Partha-013/Partha_1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/trainingData/Partha-013/Partha_1.wav -------------------------------------------------------------------------------- /trainingDataPath.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Speaker-Identification-Python/HEAD/trainingDataPath.txt --------------------------------------------------------------------------------