├── .gitignore ├── .travis.yml ├── Code ├── DataManager.py ├── FeaturesExtractor.py ├── GenderIdentifier.py └── ModelsTrainer.py ├── LICENSE ├── README.md ├── Run.py ├── genderspeaker.png ├── graphVGI.png ├── hmmCode ├── DataManager.py ├── FeaturesExtractor.py ├── GenderIdentifier.py └── ModelsTrainer.py ├── nnCode ├── DataManager.py ├── FeaturesExtractor.py ├── GenderIdentifier.py ├── ModelsTrainer.py ├── females.hmm └── males.hmm ├── requirements.txt └── svmCode ├── DataManager.py ├── FeaturesExtractor.py ├── GenderIdentifier.py ├── ModelsTrainer.py ├── females.hmm └── males.hmm /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/Voice-based-gender-recognition/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/Voice-based-gender-recognition/HEAD/.travis.yml -------------------------------------------------------------------------------- /Code/DataManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/Voice-based-gender-recognition/HEAD/Code/DataManager.py -------------------------------------------------------------------------------- /Code/FeaturesExtractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/Voice-based-gender-recognition/HEAD/Code/FeaturesExtractor.py -------------------------------------------------------------------------------- /Code/GenderIdentifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/Voice-based-gender-recognition/HEAD/Code/GenderIdentifier.py -------------------------------------------------------------------------------- /Code/ModelsTrainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/Voice-based-gender-recognition/HEAD/Code/ModelsTrainer.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/Voice-based-gender-recognition/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/Voice-based-gender-recognition/HEAD/README.md -------------------------------------------------------------------------------- /Run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/Voice-based-gender-recognition/HEAD/Run.py -------------------------------------------------------------------------------- /genderspeaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/Voice-based-gender-recognition/HEAD/genderspeaker.png -------------------------------------------------------------------------------- /graphVGI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/Voice-based-gender-recognition/HEAD/graphVGI.png -------------------------------------------------------------------------------- /hmmCode/DataManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/Voice-based-gender-recognition/HEAD/hmmCode/DataManager.py -------------------------------------------------------------------------------- /hmmCode/FeaturesExtractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/Voice-based-gender-recognition/HEAD/hmmCode/FeaturesExtractor.py -------------------------------------------------------------------------------- /hmmCode/GenderIdentifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/Voice-based-gender-recognition/HEAD/hmmCode/GenderIdentifier.py -------------------------------------------------------------------------------- /hmmCode/ModelsTrainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/Voice-based-gender-recognition/HEAD/hmmCode/ModelsTrainer.py -------------------------------------------------------------------------------- /nnCode/DataManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/Voice-based-gender-recognition/HEAD/nnCode/DataManager.py -------------------------------------------------------------------------------- /nnCode/FeaturesExtractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/Voice-based-gender-recognition/HEAD/nnCode/FeaturesExtractor.py -------------------------------------------------------------------------------- /nnCode/GenderIdentifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/Voice-based-gender-recognition/HEAD/nnCode/GenderIdentifier.py -------------------------------------------------------------------------------- /nnCode/ModelsTrainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/Voice-based-gender-recognition/HEAD/nnCode/ModelsTrainer.py -------------------------------------------------------------------------------- /nnCode/females.hmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/Voice-based-gender-recognition/HEAD/nnCode/females.hmm -------------------------------------------------------------------------------- /nnCode/males.hmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/Voice-based-gender-recognition/HEAD/nnCode/males.hmm -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/Voice-based-gender-recognition/HEAD/requirements.txt -------------------------------------------------------------------------------- /svmCode/DataManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/Voice-based-gender-recognition/HEAD/svmCode/DataManager.py -------------------------------------------------------------------------------- /svmCode/FeaturesExtractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/Voice-based-gender-recognition/HEAD/svmCode/FeaturesExtractor.py -------------------------------------------------------------------------------- /svmCode/GenderIdentifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/Voice-based-gender-recognition/HEAD/svmCode/GenderIdentifier.py -------------------------------------------------------------------------------- /svmCode/ModelsTrainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/Voice-based-gender-recognition/HEAD/svmCode/ModelsTrainer.py -------------------------------------------------------------------------------- /svmCode/females.hmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/Voice-based-gender-recognition/HEAD/svmCode/females.hmm -------------------------------------------------------------------------------- /svmCode/males.hmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/Voice-based-gender-recognition/HEAD/svmCode/males.hmm --------------------------------------------------------------------------------