Skip to content

Created an algorithm to identify metastatic cancer in small image patches taken from larger digital pathology scans. The data used for this competition is a slightly modified version of the PatchCamelyon (PCam) benchmark dataset (does not contain duplicates)

License

Notifications You must be signed in to change notification settings

rconfa/Histopathological-Cancer-Detection

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Advanced Machine Learning project

Histopathological-Cancer-Detection

Created an algorithm to identify metastatic cancer in small image patches taken from larger digital pathology scans. The data used for this competition is a slightly modified version of the PatchCamelyon (PCam) benchmark dataset. The original PCam dataset contains duplicate images due to its probabilistic sampling, however, the version presented on Kaggle does not contain duplicates.

Motivation

  • Clinical diagnosis of breast cancer is best achieved by a biopsy. The pathologist diagnose by manually examining the histology slides under the microscope. However, the traditional diagnosis system needs expertise and only experienced pathologists can accurately determine the tumor tissues. This leads to very high costs and possible human errors.
  • The use of neural models in the medical field is constantly growing, as evidenced by the rapid increase of analysis tools based on machine learning techniques.

Data

The data are taken from a Kaggle challenge published in 2018 and they can be downloaded here. For the project two subset has been created in order to speed up the learning process and create nested folder for appropriately using keras import method. Due to their size it is impossible to upload them in Github but feel free to contact me if you need them.
The original dataset has more than 220K RGB images with a dimension of 96x96x3. The given problem is the binary classification problem where the associated label has two class labels i.e. tumor and non-tumor tissues. A positive label indicates that the center 32x32px region of a patch contains at least one pixel of tumor tissue. No information is given for the outside region.

Notebook

  • 1_ResizingTrainingData: load the data and creates a balanced subset of them. You can set the desidered size by changing the parameter n_samples. Moreover the data will be saved in different folder for splitting tumor and non-tumor images.
  • 2_HistopathologicCancerDetection_FineTuning: contains the developed code for three different fine-tuning architecture (VGG16, DenseNet-201, MobileNet-V2. It also contains the tuning of the related hyperparameters.
  • 3_HistopathologicCancerDetection_ModelFromScratch: contains the developed code for a convolutional neural network from scratch. Contains several versions of this CNN and hyperparameter optimization.

You can also find the report and presentation made for the exam. Both in italian language.

How to run code

We advise you to run all the code in Google Colaboratory platform. All notebooks all already setted to import the necessary packages and also in this way you can easily use a GPU!
If you have trouble with Google Drive timeout for notebook 1 during the creation of subsets of the data you can easily run the code in a local environment by just installing sklearn, shutil and pandas.
Anyway if you have any problem just contact me for further information!

Results Table

Comparative result of models based on simulated test set created in advance:

Architectures Accuracy Precision Recall F1-score AUC-ROC
VGG16 0.73 0.74 0.73 0.73 0.73
DenseNet-201 0.79 0.79 0.79 0.79 0.79
MobileNet-V2 0.74 0.74 0.74 0.74 0.74
scratch 0.93 0.93 0.93 0.93 0.931

By using the model from scrach with Kaggle test set we achive 0.885 as AUC.

References

[1] V. Messina and S. Bianco, “Dispense e slide del corso advanced machine learning,” 2021.
[2] PCCam, “Histopathologic cancer detection,” 2019.
[3] K.-S. Lee, S.-H. Son, S.-H. Park, and E. Kim, “Automated detection of colorectal tumors based on artificial intelligence”.
[4] PCCam, “Histopathologic cancer detection,” 2019. [Online]. Available: https://www.kaggle.com/c/histopathologic-cancer-detection/data.

About us

Riccardo Confalonieri - Data Science Student @ University of Milano-Bicocca

Cogo Luca - Data Science Student @ University of Milano-Bicocca

About

Created an algorithm to identify metastatic cancer in small image patches taken from larger digital pathology scans. The data used for this competition is a slightly modified version of the PatchCamelyon (PCam) benchmark dataset (does not contain duplicates)

Topics

Resources

License

Stars

Watchers

Forks