Cancer-Detection
Method
Step 1: Data acquisition A UCI Wisconsin dataset (1995) will be downloaded from the UCI machine learning repository (https://archive.ics.uci.edu/ml/datasets/Breast+Cancer+Wisconsin+(Diagnostic) To train and evaluate a machine learning model, a sufficiently large dataset of mammogram samples must be acquired. Within this dataset, features are computed from a digitized image of a fine needle aspirate (FNA) of a breast mass. They describe characteristics of the cell nuclei present in the image. This dataset contains 569 samples, each with 32 attributes.
Step 2: Data visualization Create a correlation map Determining relationships within the data can aid in deciding which machine learning methods to use. Therefore, the relationships between their various attributes are visualized.
Step 3: Data pre-processing Restructure the data and prepare for inputting into machine learning models This dataset is provided in a CSV file format. To accelerate the training process, all 569 samples are first loaded into working…