Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/Surya-Prakash-Reddy/Breast-Cancer-Prediction

Predicts whether the type of breast cancer is Malignant or Benign
https://github.com/Surya-Prakash-Reddy/Breast-Cancer-Prediction

breast-cancer breast-cancer-classification breast-cancer-prediction breast-cancer-wisconsin flask flask-application svm svm-classifier

Last synced: about 2 months ago
JSON representation

Predicts whether the type of breast cancer is Malignant or Benign

Awesome Lists containing this project

README

        


------------

# Breast Cancer Prediction
> Predicts whether the type of breast cancer is Malignant or Benign

## Table of contents
* [About Project](#about-project)
* [Languages or Frameworks Used](#languages-or-frameworks-used)
* [Setup](#setup)

## About Project:

Breast cancer is the most common type of cancer in women. When cancers are found early, they can often be cured.
There are some devices that detect the breast cancer but many times they lead to false positives, which results
is patients undergoing painful, expensive surgeries that were not even necessary. These type of cancers are called
**benign** which do not require surgeries and we can reduce these unnecessary surgeries by using Machine Learning.
We take a dataset of the previous breast cancer patients and train the model to predict whether the cancer is **benign** or **malignant**. These predictions will help doctors to do surgeries only when the cancer is malignant, thus reducing the unnecessary surgeries for woman.

For building the project we have used Wisconsin Breast cancer data which has 569 rows of which 357 are benign and 212 are malignant.
The data is prepossessed and scaled. We have trained both ANN and SVM and SVM gives best accuracy of 98.2%. To provide the easy to
use interface to doctors we have developed a website that will take the data and display the output with accuracy and time taken
to predict.

## Languages or Frameworks Used

* Python: language
* NumPy: library for numerical calculations
* Pandas: library for data manipulation and analysis
* SkLearn: library which features various classification, regression and clustering algorithms
* Flask: microframework for building web applications using Python.

## Setup

To use this project, clone the repo

### Clone
```
git clone https://github.com/Surya-Prakash-Reddy/Breast-Cancer-Prediction.git
```

After cloning, using the command prompt, go to the project directory and run `python app.py` to start the web server. Now you can go to link which was displayed in command prompt to access the web application. Firstly, make sure you have installed all necessary libraries or packages installed on your system.