Using DeepLearning to detect the cough caused by COVID-19 from sound recordings. Our vision is that that everybody can get screened at zero costs and directly from home.
This solution was built during a hackathon, checkout the devpost for complete details here.
git clone https://github.com/shresthagrawal/covid19.git
cd covid19
virtualenv venv
source venv/bin/activate
git clone https://github.com/tyiannak/pyAudioAnalysis.git
pip3 install -r ./App/requirements.txt
pip3 install -r ./pyAudioAnalysis/requirements.txt
brew install ffmpeg
pip3 install -e pyAudioAnalysis
python3 App/app.py
chmod +x ./auto.sh
./auto.sh
python3 pyAudioAnalysis/pyAudioAnalysis/audioAnalysis.py trainClassifier -i data/cough/not_sick data/cough/sick --method randomforest -o model_new
python3 pyAudioAnalysis/pyAudioAnalysis/audioAnalysis.py trainClassifier -i data/uploads/not_sick data/uploads/sick --method randomforest -o model/model_new
The diagnostics function is not live yet, as this will require a medical trial first. By uploading your cough sound recording already now, you make a valuable contribution to getting this tool ready for a broader audience. Please take 10 seconds to fight COVID-19 and upload your sample here: https://www.detect-now.org/ (edited)