├── .gitignore ├── README.md ├── depression-detect-poster.pdf ├── depression-detect-ppt.pdf ├── depression-detect-report.pdf ├── images ├── cnn_architecture.png ├── cnn_general.png ├── dep_detect_cnn_architecture.png ├── interview_with_ellie.png ├── phq8_dist.png ├── roc_curve.png ├── spectrogram2.png ├── tech_stack.png └── website.gif ├── src ├── README.md ├── data │ ├── extract_from_zip.py │ └── segmentation.py ├── features │ ├── cnn.py │ ├── dev_data.py │ ├── plot_metrics.py │ ├── random_sampling.py │ ├── spectrogram_dicts.py │ └── spectrograms.py └── models │ └── README.md └── web_app ├── README.md ├── app.py ├── dep_log.csv ├── spectrogram.py ├── static ├── audio_uploads │ └── .gitignore ├── css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap-theme.min.css.map │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ ├── bootstrap.min.css.map │ ├── carousel.css │ ├── cover.css │ ├── ie10-viewport-bug-workaround.css │ └── jumbotron.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── img │ ├── cliff_text2.png │ ├── donation.jpg │ ├── how_to_record.gif │ ├── ky_kiefer.jpg │ ├── microphone.png │ ├── oops.png │ ├── spectrogram.png │ └── woman_text3.png ├── js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── holder.min.js │ ├── ie-emulation-modes-warning.js │ ├── ie10-viewport-bug-workaround.js │ ├── jquery.min.js │ └── npm.js ├── matrices │ └── .gitignore └── spectrograms │ └── .gitignore ├── templates ├── contact.html ├── donate.html ├── index.html ├── survey.html └── thankyou.html └── upload_to_s3.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/README.md -------------------------------------------------------------------------------- /depression-detect-poster.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/depression-detect-poster.pdf -------------------------------------------------------------------------------- /depression-detect-ppt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/depression-detect-ppt.pdf -------------------------------------------------------------------------------- /depression-detect-report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/depression-detect-report.pdf -------------------------------------------------------------------------------- /images/cnn_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/images/cnn_architecture.png -------------------------------------------------------------------------------- /images/cnn_general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/images/cnn_general.png -------------------------------------------------------------------------------- /images/dep_detect_cnn_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/images/dep_detect_cnn_architecture.png -------------------------------------------------------------------------------- /images/interview_with_ellie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/images/interview_with_ellie.png -------------------------------------------------------------------------------- /images/phq8_dist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/images/phq8_dist.png -------------------------------------------------------------------------------- /images/roc_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/images/roc_curve.png -------------------------------------------------------------------------------- /images/spectrogram2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/images/spectrogram2.png -------------------------------------------------------------------------------- /images/tech_stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/images/tech_stack.png -------------------------------------------------------------------------------- /images/website.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/images/website.gif -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/src/README.md -------------------------------------------------------------------------------- /src/data/extract_from_zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/src/data/extract_from_zip.py -------------------------------------------------------------------------------- /src/data/segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/src/data/segmentation.py -------------------------------------------------------------------------------- /src/features/cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/src/features/cnn.py -------------------------------------------------------------------------------- /src/features/dev_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/src/features/dev_data.py -------------------------------------------------------------------------------- /src/features/plot_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/src/features/plot_metrics.py -------------------------------------------------------------------------------- /src/features/random_sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/src/features/random_sampling.py -------------------------------------------------------------------------------- /src/features/spectrogram_dicts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/src/features/spectrogram_dicts.py -------------------------------------------------------------------------------- /src/features/spectrograms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/src/features/spectrograms.py -------------------------------------------------------------------------------- /src/models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/src/models/README.md -------------------------------------------------------------------------------- /web_app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/web_app/README.md -------------------------------------------------------------------------------- /web_app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/web_app/app.py -------------------------------------------------------------------------------- /web_app/dep_log.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web_app/spectrogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/web_app/spectrogram.py -------------------------------------------------------------------------------- /web_app/static/audio_uploads/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/web_app/static/audio_uploads/.gitignore -------------------------------------------------------------------------------- /web_app/static/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/web_app/static/css/bootstrap-theme.css -------------------------------------------------------------------------------- /web_app/static/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/web_app/static/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /web_app/static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/web_app/static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /web_app/static/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/web_app/static/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /web_app/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/web_app/static/css/bootstrap.css -------------------------------------------------------------------------------- /web_app/static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/web_app/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /web_app/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/web_app/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /web_app/static/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/web_app/static/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /web_app/static/css/carousel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/web_app/static/css/carousel.css -------------------------------------------------------------------------------- /web_app/static/css/cover.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/web_app/static/css/cover.css -------------------------------------------------------------------------------- /web_app/static/css/ie10-viewport-bug-workaround.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/web_app/static/css/ie10-viewport-bug-workaround.css -------------------------------------------------------------------------------- /web_app/static/css/jumbotron.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/web_app/static/css/jumbotron.css -------------------------------------------------------------------------------- /web_app/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/web_app/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /web_app/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/web_app/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /web_app/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/web_app/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /web_app/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/web_app/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /web_app/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/web_app/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /web_app/static/img/cliff_text2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/web_app/static/img/cliff_text2.png -------------------------------------------------------------------------------- /web_app/static/img/donation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/web_app/static/img/donation.jpg -------------------------------------------------------------------------------- /web_app/static/img/how_to_record.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/web_app/static/img/how_to_record.gif -------------------------------------------------------------------------------- /web_app/static/img/ky_kiefer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/web_app/static/img/ky_kiefer.jpg -------------------------------------------------------------------------------- /web_app/static/img/microphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/web_app/static/img/microphone.png -------------------------------------------------------------------------------- /web_app/static/img/oops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/web_app/static/img/oops.png -------------------------------------------------------------------------------- /web_app/static/img/spectrogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/web_app/static/img/spectrogram.png -------------------------------------------------------------------------------- /web_app/static/img/woman_text3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/web_app/static/img/woman_text3.png -------------------------------------------------------------------------------- /web_app/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/web_app/static/js/bootstrap.js -------------------------------------------------------------------------------- /web_app/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/web_app/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /web_app/static/js/holder.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/web_app/static/js/holder.min.js -------------------------------------------------------------------------------- /web_app/static/js/ie-emulation-modes-warning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/web_app/static/js/ie-emulation-modes-warning.js -------------------------------------------------------------------------------- /web_app/static/js/ie10-viewport-bug-workaround.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/web_app/static/js/ie10-viewport-bug-workaround.js -------------------------------------------------------------------------------- /web_app/static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/web_app/static/js/jquery.min.js -------------------------------------------------------------------------------- /web_app/static/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/web_app/static/js/npm.js -------------------------------------------------------------------------------- /web_app/static/matrices/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/web_app/static/matrices/.gitignore -------------------------------------------------------------------------------- /web_app/static/spectrograms/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/web_app/static/spectrograms/.gitignore -------------------------------------------------------------------------------- /web_app/templates/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/web_app/templates/contact.html -------------------------------------------------------------------------------- /web_app/templates/donate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/web_app/templates/donate.html -------------------------------------------------------------------------------- /web_app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/web_app/templates/index.html -------------------------------------------------------------------------------- /web_app/templates/survey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/web_app/templates/survey.html -------------------------------------------------------------------------------- /web_app/templates/thankyou.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/web_app/templates/thankyou.html -------------------------------------------------------------------------------- /web_app/upload_to_s3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kykiefer/depression-detect/HEAD/web_app/upload_to_s3.py --------------------------------------------------------------------------------