From 24278ec3c92e2166ef2dc577a8fc7097035f49fa Mon Sep 17 00:00:00 2001 From: Kory Becker Date: Wed, 15 Dec 2021 19:04:10 -0500 Subject: [PATCH 1/3] Update readme.md --- Web/readme.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Web/readme.md b/Web/readme.md index b4eff0c..5c3b809 100644 --- a/Web/readme.md +++ b/Web/readme.md @@ -11,15 +11,15 @@ The web version is developed with R Shiny. ### Results of an analysis -![Homepage and analysis.](images/screenshot1.png) +> ![Homepage and analysis.](images/screenshot1.png) ### Frequency graph -![Frequency graph.](images/screenshot2.png) +> ![Frequency graph.](images/screenshot2.png) ### Spectrogram -![Spectrogram.](images/screenshot3.png) +> ![Spectrogram.](images/screenshot3.png) ## Installation From 1fae3a412c1d106803283af826cfea0df3e19dde Mon Sep 17 00:00:00 2001 From: Kory Becker Date: Wed, 15 Dec 2021 19:04:35 -0500 Subject: [PATCH 2/3] Update readme.md --- Web/readme.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/Web/readme.md b/Web/readme.md index 5c3b809..9fb341f 100644 --- a/Web/readme.md +++ b/Web/readme.md @@ -7,6 +7,17 @@ The program allows users to upload an audio file or provide a url to an audio re The web version is developed with R Shiny. +## Installation + +1. Install the required Linux libraries with the following command. +```bash +sudo apt-get install libcurl4-openssl-dev cmake r-base-core fftw3 fftw3-dev pkg-config +``` + +2. If debugging using VSCode, install the [R Debugger](https://github.com/ManuelHentschel/VSCode-R-Debugger) from the Extensions panel. + +3. In VSCode, click the Debug tool and run **Launch Shiny App**. A new browser should display with the web application running. + ## Screenshots ### Results of an analysis @@ -20,14 +31,3 @@ The web version is developed with R Shiny. ### Spectrogram > ![Spectrogram.](images/screenshot3.png) - -## Installation - -1. Install the required Linux libraries with the following command. -```bash -sudo apt-get install libcurl4-openssl-dev cmake r-base-core fftw3 fftw3-dev pkg-config -``` - -2. If debugging using VSCode, install the [R Debugger](https://github.com/ManuelHentschel/VSCode-R-Debugger) from the Extensions panel. - -3. In VSCode, click the Debug tool and run **Launch Shiny App**. A new browser should display with the web application running. From e07ee30eab50e5578cacab384c3c7637105767e4 Mon Sep 17 00:00:00 2001 From: Kory Becker Date: Wed, 15 Dec 2021 19:05:32 -0500 Subject: [PATCH 3/3] Update readme.md --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index edc1dec..bab8395 100644 --- a/readme.md +++ b/readme.md @@ -5,7 +5,7 @@ Gender Recognition by Voice and Speech Analysis Run the online [demo](https://voicegender.herokuapp.com). -Read the detailed [article](http://www.primaryobjects.com/2016/06/22/identifying-the-gender-of-a-voice-using-machine-learning/). +Read the full article [Identifying the Gender of a Voice using Machine Learning](http://www.primaryobjects.com/2016/06/22/identifying-the-gender-of-a-voice-using-machine-learning/). This project trains a computer program to identify a voice as male or female, based upon acoustic properties of the voice and speech. The model is trained on a dataset consisting of 3,168 recorded voice samples, collected from male and female speakers. The voice samples are pre-processed by acoustic analysis in R and then processed with artificial intelligence/machine learning algorithms to learn gender-specific traits for classifying the voice as male or female.