This project is for an article I wrote about the gradio library.
It contains a neural network trained on dianetes data and also a GUI web app created using gradio which let's users inut their data (according to the features in the dataset) and the data is then run through the model which then outputs if the person has diabetes or not.
The data was gotten from kaggle
For you to run this you need to have python installed on your system and also the below stated libraries.
Below I also stated how toinstall them using pip
and conda
- pandas
pip install pandas
conda install pandas
- scikit-learn
pip install sklearn
conda install skllearn
- gradio
pip install gradio
- numpy
pip install numpy
conda install numpy