A Depression Detection WebApp using Sklearn and Flask
To create an informative AI-based tool that should be able to give alerts and identify cases of mental health issues in children and also track the improvement status in identified cases. It should be able to track mental health issues prevalent in children from birth to the ones which they acquired later in their life for remediation and counselling. The tool should support teacher’s assessment as well as parental and self-assessment.
All the data collected through form is stored in Realtime Database of Firebase. The Firebase Realtime Database is a cloud-hosted NoSQL database that lets you store and sync data between your users in realtime.
Based on your Answers, it will show the extent of your depression.
Go to your project directory and create a virtual env to run flask app:
$ cd myproject
$ python3 -m venv venv
Activate your virtual env :
$ . venv/bin/activate
Within the activated environment, use the following command to install Flask:
$ pip install Flask
To run the application, use the flask command or python -m flask. Before you can do that you need to tell your terminal the application to work with by exporting the FLASK_APP environment variable:
$ export FLASK_APP=app
$ flask run
* Running on http://127.0.0.1:5000/