├── .github └── FUNDING.yml ├── .gitignore ├── .vscode └── launch.json ├── Web ├── config.R ├── data │ ├── stacked.bin │ ├── svm.bin │ ├── tunedForest.bin │ ├── xgboostLarge.bin │ └── xgboostSmall.bin ├── gender.R ├── images │ ├── screenshot1.png │ ├── screenshot2.png │ └── screenshot3.png ├── readme.md ├── run.R ├── server.R ├── ui.R └── www │ ├── google-analytics.js │ └── script.js ├── clypdown.py ├── data.bin ├── images ├── stacked-ensemble.png ├── svm-tuning1.png ├── svm-tuning2.png ├── svm-tuning3.png ├── svm-tuning4.png ├── voice-plot-1.png └── voice-plot-2.png ├── readme.md ├── sound.R ├── stacked.bin ├── svm.bin ├── tunedForest.bin ├── voice.csv ├── xgboostLarge.bin └── xgboostSmall.bin /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primaryobjects/voice-gender/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primaryobjects/voice-gender/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primaryobjects/voice-gender/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /Web/config.R: -------------------------------------------------------------------------------- 1 | token <- '1a8685de-0a4a-4f34-9c0f-7cc02216eb8c' -------------------------------------------------------------------------------- /Web/data/stacked.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primaryobjects/voice-gender/HEAD/Web/data/stacked.bin -------------------------------------------------------------------------------- /Web/data/svm.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primaryobjects/voice-gender/HEAD/Web/data/svm.bin -------------------------------------------------------------------------------- /Web/data/tunedForest.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primaryobjects/voice-gender/HEAD/Web/data/tunedForest.bin -------------------------------------------------------------------------------- /Web/data/xgboostLarge.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primaryobjects/voice-gender/HEAD/Web/data/xgboostLarge.bin -------------------------------------------------------------------------------- /Web/data/xgboostSmall.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primaryobjects/voice-gender/HEAD/Web/data/xgboostSmall.bin -------------------------------------------------------------------------------- /Web/gender.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primaryobjects/voice-gender/HEAD/Web/gender.R -------------------------------------------------------------------------------- /Web/images/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primaryobjects/voice-gender/HEAD/Web/images/screenshot1.png -------------------------------------------------------------------------------- /Web/images/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primaryobjects/voice-gender/HEAD/Web/images/screenshot2.png -------------------------------------------------------------------------------- /Web/images/screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primaryobjects/voice-gender/HEAD/Web/images/screenshot3.png -------------------------------------------------------------------------------- /Web/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primaryobjects/voice-gender/HEAD/Web/readme.md -------------------------------------------------------------------------------- /Web/run.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primaryobjects/voice-gender/HEAD/Web/run.R -------------------------------------------------------------------------------- /Web/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primaryobjects/voice-gender/HEAD/Web/server.R -------------------------------------------------------------------------------- /Web/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primaryobjects/voice-gender/HEAD/Web/ui.R -------------------------------------------------------------------------------- /Web/www/google-analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primaryobjects/voice-gender/HEAD/Web/www/google-analytics.js -------------------------------------------------------------------------------- /Web/www/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primaryobjects/voice-gender/HEAD/Web/www/script.js -------------------------------------------------------------------------------- /clypdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primaryobjects/voice-gender/HEAD/clypdown.py -------------------------------------------------------------------------------- /data.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primaryobjects/voice-gender/HEAD/data.bin -------------------------------------------------------------------------------- /images/stacked-ensemble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primaryobjects/voice-gender/HEAD/images/stacked-ensemble.png -------------------------------------------------------------------------------- /images/svm-tuning1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primaryobjects/voice-gender/HEAD/images/svm-tuning1.png -------------------------------------------------------------------------------- /images/svm-tuning2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primaryobjects/voice-gender/HEAD/images/svm-tuning2.png -------------------------------------------------------------------------------- /images/svm-tuning3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primaryobjects/voice-gender/HEAD/images/svm-tuning3.png -------------------------------------------------------------------------------- /images/svm-tuning4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primaryobjects/voice-gender/HEAD/images/svm-tuning4.png -------------------------------------------------------------------------------- /images/voice-plot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primaryobjects/voice-gender/HEAD/images/voice-plot-1.png -------------------------------------------------------------------------------- /images/voice-plot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primaryobjects/voice-gender/HEAD/images/voice-plot-2.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primaryobjects/voice-gender/HEAD/readme.md -------------------------------------------------------------------------------- /sound.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primaryobjects/voice-gender/HEAD/sound.R -------------------------------------------------------------------------------- /stacked.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primaryobjects/voice-gender/HEAD/stacked.bin -------------------------------------------------------------------------------- /svm.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primaryobjects/voice-gender/HEAD/svm.bin -------------------------------------------------------------------------------- /tunedForest.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primaryobjects/voice-gender/HEAD/tunedForest.bin -------------------------------------------------------------------------------- /voice.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primaryobjects/voice-gender/HEAD/voice.csv -------------------------------------------------------------------------------- /xgboostLarge.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primaryobjects/voice-gender/HEAD/xgboostLarge.bin -------------------------------------------------------------------------------- /xgboostSmall.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primaryobjects/voice-gender/HEAD/xgboostSmall.bin --------------------------------------------------------------------------------