├── .gitattributes ├── .gitignore ├── EDA.ipynb ├── LICENSE ├── README.md ├── images ├── Figure_1.png ├── accent.png ├── age.png ├── duration [s].png ├── gender.png └── nn.svg ├── report.pdf ├── resources ├── Papers │ ├── 25868884-1.pdf │ ├── 3524833a1ff8ae12479a9eabff44e6450e02.pdf │ ├── 7213717.pdf │ ├── FinalReport.pdf │ ├── GENDER_RECOGNITION_SYSTEM_USING_SPEECH_S.pdf │ ├── maka2014.pdf │ ├── make-01-00030-v3-1.pdf │ └── speech_prosody16.pdf └── Websites │ ├── 20 Best Speech Recognition Datasets for Machine Learning Lionbridge AI.URL │ ├── Common Voice Kaggle.URL │ ├── How to Perform Voice Gender Recognition using TensorFlow in Python - Python Code.URL │ ├── PortfolioVoice Classification at master · jurgenariasPortfolio.URL │ └── jim-schwoebelvoice_datasets 🔊 A comprehensive list of open-source datasets for voice and sound computing (40+ datasets)..URL └── src ├── .vscode └── settings.json ├── app.py ├── config.py ├── data_utils.py ├── main.py ├── models.py ├── requirements.txt ├── results ├── ann_model.pt ├── final_model.model └── scaler.pkl ├── train_utils.py └── utils.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRoboto/Gender-Recognition-by-Voice/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRoboto/Gender-Recognition-by-Voice/HEAD/.gitignore -------------------------------------------------------------------------------- /EDA.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRoboto/Gender-Recognition-by-Voice/HEAD/EDA.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRoboto/Gender-Recognition-by-Voice/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRoboto/Gender-Recognition-by-Voice/HEAD/README.md -------------------------------------------------------------------------------- /images/Figure_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRoboto/Gender-Recognition-by-Voice/HEAD/images/Figure_1.png -------------------------------------------------------------------------------- /images/accent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRoboto/Gender-Recognition-by-Voice/HEAD/images/accent.png -------------------------------------------------------------------------------- /images/age.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRoboto/Gender-Recognition-by-Voice/HEAD/images/age.png -------------------------------------------------------------------------------- /images/duration [s].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRoboto/Gender-Recognition-by-Voice/HEAD/images/duration [s].png -------------------------------------------------------------------------------- /images/gender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRoboto/Gender-Recognition-by-Voice/HEAD/images/gender.png -------------------------------------------------------------------------------- /images/nn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRoboto/Gender-Recognition-by-Voice/HEAD/images/nn.svg -------------------------------------------------------------------------------- /report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRoboto/Gender-Recognition-by-Voice/HEAD/report.pdf -------------------------------------------------------------------------------- /resources/Papers/25868884-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRoboto/Gender-Recognition-by-Voice/HEAD/resources/Papers/25868884-1.pdf -------------------------------------------------------------------------------- /resources/Papers/3524833a1ff8ae12479a9eabff44e6450e02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRoboto/Gender-Recognition-by-Voice/HEAD/resources/Papers/3524833a1ff8ae12479a9eabff44e6450e02.pdf -------------------------------------------------------------------------------- /resources/Papers/7213717.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRoboto/Gender-Recognition-by-Voice/HEAD/resources/Papers/7213717.pdf -------------------------------------------------------------------------------- /resources/Papers/FinalReport.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRoboto/Gender-Recognition-by-Voice/HEAD/resources/Papers/FinalReport.pdf -------------------------------------------------------------------------------- /resources/Papers/GENDER_RECOGNITION_SYSTEM_USING_SPEECH_S.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRoboto/Gender-Recognition-by-Voice/HEAD/resources/Papers/GENDER_RECOGNITION_SYSTEM_USING_SPEECH_S.pdf -------------------------------------------------------------------------------- /resources/Papers/maka2014.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRoboto/Gender-Recognition-by-Voice/HEAD/resources/Papers/maka2014.pdf -------------------------------------------------------------------------------- /resources/Papers/make-01-00030-v3-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRoboto/Gender-Recognition-by-Voice/HEAD/resources/Papers/make-01-00030-v3-1.pdf -------------------------------------------------------------------------------- /resources/Papers/speech_prosody16.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRoboto/Gender-Recognition-by-Voice/HEAD/resources/Papers/speech_prosody16.pdf -------------------------------------------------------------------------------- /resources/Websites/20 Best Speech Recognition Datasets for Machine Learning Lionbridge AI.URL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRoboto/Gender-Recognition-by-Voice/HEAD/resources/Websites/20 Best Speech Recognition Datasets for Machine Learning Lionbridge AI.URL -------------------------------------------------------------------------------- /resources/Websites/Common Voice Kaggle.URL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRoboto/Gender-Recognition-by-Voice/HEAD/resources/Websites/Common Voice Kaggle.URL -------------------------------------------------------------------------------- /resources/Websites/How to Perform Voice Gender Recognition using TensorFlow in Python - Python Code.URL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRoboto/Gender-Recognition-by-Voice/HEAD/resources/Websites/How to Perform Voice Gender Recognition using TensorFlow in Python - Python Code.URL -------------------------------------------------------------------------------- /resources/Websites/PortfolioVoice Classification at master · jurgenariasPortfolio.URL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRoboto/Gender-Recognition-by-Voice/HEAD/resources/Websites/PortfolioVoice Classification at master · jurgenariasPortfolio.URL -------------------------------------------------------------------------------- /resources/Websites/jim-schwoebelvoice_datasets 🔊 A comprehensive list of open-source datasets for voice and sound computing (40+ datasets)..URL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRoboto/Gender-Recognition-by-Voice/HEAD/resources/Websites/jim-schwoebelvoice_datasets 🔊 A comprehensive list of open-source datasets for voice and sound computing (40+ datasets)..URL -------------------------------------------------------------------------------- /src/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRoboto/Gender-Recognition-by-Voice/HEAD/src/.vscode/settings.json -------------------------------------------------------------------------------- /src/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRoboto/Gender-Recognition-by-Voice/HEAD/src/app.py -------------------------------------------------------------------------------- /src/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRoboto/Gender-Recognition-by-Voice/HEAD/src/config.py -------------------------------------------------------------------------------- /src/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRoboto/Gender-Recognition-by-Voice/HEAD/src/data_utils.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRoboto/Gender-Recognition-by-Voice/HEAD/src/main.py -------------------------------------------------------------------------------- /src/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRoboto/Gender-Recognition-by-Voice/HEAD/src/models.py -------------------------------------------------------------------------------- /src/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRoboto/Gender-Recognition-by-Voice/HEAD/src/requirements.txt -------------------------------------------------------------------------------- /src/results/ann_model.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRoboto/Gender-Recognition-by-Voice/HEAD/src/results/ann_model.pt -------------------------------------------------------------------------------- /src/results/final_model.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRoboto/Gender-Recognition-by-Voice/HEAD/src/results/final_model.model -------------------------------------------------------------------------------- /src/results/scaler.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRoboto/Gender-Recognition-by-Voice/HEAD/src/results/scaler.pkl -------------------------------------------------------------------------------- /src/train_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRoboto/Gender-Recognition-by-Voice/HEAD/src/train_utils.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRoboto/Gender-Recognition-by-Voice/HEAD/src/utils.py --------------------------------------------------------------------------------