|
a/README.md |
|
b/README.md |
1 |
|
1 |
## Diabetes Predictor
|
2 |
## Diabetes Predictor |
|
|
3 |
> Predict Diabetes using Machine Learning. |
2 |
Predict Diabetes using Machine Learning. |
4 |
|
3 |
|
5 |
In this project, our objective is to predict whether the patient has diabetes or not based on various features like *Glucose level, Insulin, Age, BMI*. We will perform all the steps from *Data gathering to Model deployment.* During Model evaluation, we compare various machine learning algorithms on the basis of accuracy_score metric and find the best one. Then we create a web app using Flask which is a python micro framework. |
4 |
In this project, our objective is to predict whether the patient has diabetes or not based on various features like *Glucose level, Insulin, Age, BMI*. We will perform all the steps from *Data gathering to Model deployment.* During Model evaluation, we compare various machine learning algorithms on the basis of accuracy_score metric and find the best one. Then we create a web app using Flask which is a python micro framework. |
6 |
|
5 |
|
7 |
|
6 |
|
8 |
> Read more about it in my [Blogpost](https://medium.com/@adityamankar09/building-a-diabetes-predictor-4702b99bc7e4). |
7 |
Read more about it in my [Blogpost](https://medium.com/@adityamankar09/building-a-diabetes-predictor-4702b99bc7e4). |
9 |
|
8 |
|
10 |
# **Screenshot** |
9 |
|
11 |
|
|
|
12 |
 |
|
|
13 |
|
|
|
14 |
# Installation |
10 |
# Installation |
15 |
|
11 |
|
16 |
- Clone this repository and unzip it. |
12 |
- Clone this repository and unzip it. |
17 |
|
13 |
|
18 |
- After downloading, `cd` into the `flask` directory. |
14 |
- After downloading, `cd` into the `flask` directory. |
19 |
|
15 |
|
20 |
- Begin a new virtual environment with Python 3 and activate it. |
16 |
- Begin a new virtual environment with Python 3 and activate it. |
21 |
|
17 |
|
22 |
- Install the required packages using |
18 |
- Install the required packages using
|
23 |
`pip install -r requirements.txt` |
19 |
`pip install -r requirements.txt` |
24 |
|
20 |
|
25 |
- Execute the command: |
21 |
- Execute the command:
|
26 |
`python app.py` |
22 |
`python app.py` |
27 |
|
23 |
|
28 |
- Open http://127.0.0.1:5000/ in your browser. |
24 |
- Open http://127.0.0.1:5000/ in your browser.
|