Prostate Cancer classification using KNN and Scikit-Learn.
Use it here.
The model uses the K-Nearest-Neighbours algorithm to classify the features array into Benign or Malignant tumours.
The optimum value for neighbours was found to be 3, which gave a testing accuracy of 93%.
git clone https://github.com/DeagleOfficial/prostate_cancer_classifier.git
virtualenv env
.\env\Scripts\activate
pip install -r requirements.txt
flask run
gunicorn app:app
This project uses Gunicorn for its production server which supports Unix systems and does not run on Windows. However, you can run the development server on Windows using flask run
.