Disease Predictor and Specialist Recommender (DPSR) is a web-based application for general disease prediction, using Machine Learning based on the Kaggle Datasets. The objectives of the project is to provide web interface platform for the prediction of the disease. In addition with it, it helps to suggest and recommend specialist for the predicted disease with their respective details. On the basis of highest experience and lowest fee.
About DPSR Using Django
Disease Predictor and Specialist Recommender (DPSR) is wide in coming recent years as we can see health service going fully online soon. The system has 2 users, namely patient and doctor. Furthermore, these users are authenticated by the system and have their own specific role in the system. DPSR allows patients to input their symptoms and according to those symptoms, the system predicts a disease. Also, the system suggests the doctors according to disease predicted. The additional features of this project can be summarized as –
- Booking an appointment online.
- User feedback.
Requirements for DPSR Using Django
How To Run DPSR Using Django ?
- There is requirements.txt file in the project directory. Instead of running pip install -r requirements.txt. It encounters less error when installing those packages one by one by using pip install <package_name>.
- Then, go to settings.py and make changes in the database section i.e. replace the user and password of Postgres with yours.
- Create a database named in the name within database in line 80 of settings.py file.
- Run the command “python manage.py migrate”.
- Finally, run the server with “python manage.py runserver”.