This is the Pytorch implementation for the multiple instance learning model described in the paper Dual-stream Multiple Instance Learning Network for Whole Slide Image Classification with Self-supervised Contrastive Learning (CVPR 2021, accepted for oral presentation).
Install anaconda/miniconda
Required packages
$ conda env create --name dsmil --file env.yml
$ conda activate dsmil
Install OpenSlide and openslide-python.
Tutorial 1 and Tutorial 2 (Windows).
MIL benchmark datasets can be downloaded via:
$ python download.py --dataset=mil
Precomputed features for TCGA Lung Cancer dataset can be downloaded via:
$ python download.py --dataset=tcga
Precomputed features for Camelyon16 dataset
$ python download.py --dataset=c16
This dataset requires 30GB of free disk space.
Train DSMIL on standard MIL benchmark dataset:
$ python train_mil.py
Switch between MIL benchmark dataset, use option:
[--datasets] # musk1, musk2, elephant, fox, tiger
Other options are available for learning rate (--lr=0.0002), cross validation fold (--cv_fold=10), weight-decay (--weight_decay=5e-3), and number of epochs (--num_epoch=40).
Train DSMIL on TCGA Lung Cancer dataset (precomputed features):
$ python train_tcga.py --dataset=TCGA-lung-default
Train DSMIL on Camelyon16 dataset (precomputed features):
$ python train_tcga.py --dataset=Camelyon16 --num_classes=1
We provided a testing pipeline for several sample slides. The slides can be downloaded via:
$ python download.py --dataset=tcga-test
You might need to unzip the file manually. 7-zip might be required for unzipping in Linux. To crop the WSIs into patches, run:
$ python test_crop_single.py --dataset=tcga
A folder containing all patches for each WSI will be created at
./test/patches
.
After the WSIs are cropped, run the testing script:
$ python testing_tcga.py
The thumbnails of the WSIs will be saved in
./test/thumbnails
.
The detection color maps will be saved in./test/output
.
The testing pipeline will process every WSI placed inside the./test/input
folder. The slide will be detected as a LUAD, LUSC, or benign sample.
Generating detection maps for Camelyon16 is similar. Direct download link for the sample slides.
$ python download.py --dataset=c16-test
$ python test_crop_single.py --dataset=c16
$ python testing_c16.py
If you are processing WSI from raw images, you will need to download the WSIs first.
Download WSIs.
-
From GDC data portal. You can use GDC data portal with a manifest file and configuration file. Example manifest files and configuration files can be found in tcga-download. The raw WSIs take about 1TB of disc space and may take several days to download. Open command-line tool (Command Prompt for the case of Windows), unzip the data portal client into
./tcga-download
, navigate to./tcga-download
, and use commands:
$ cd tcga-download
$ gdc-client -m gdc_manifest.2020-09-06-TCGA-LUAD.txt --config config-LUAD.dtt
$ gdc-client -m gdc_manifest.2020-09-06-TCGA-LUSC.txt --config config-LUSC.dtt
The data will be saved in
./WSI/TCGA-lung
. Please check details regarding the use of TCGA data portal. Otherwise, individual WSIs can be download manually in GDC data portal repository
-
From Google Drive. The svs files are also uploaded. The dataset contains in total 1053 slides, including 512 LUSC and 541 LUAD. 10 low-quality LUAD slides are discarded.
Sort svs files in the folder.
Separate LUAD and LUSC slides according to the IDs and place the files into folder WSI/TCGA-lung/LUAD
or WSI/TCGA-lung/LUSC
.
Prepare the patches.
We will be using OpenSlide, a C library with a Python API that provides a simple interface to read WSI data. We refer the users to OpenSlide Python API document for the details of using this tool.
The patches could be saved in './WSI/TCGA-lung/pyramid' in a pyramidal structure for two magnification levels. The first magnification level is level 0, which corresponds to 40x. For example, to extract patches at 20x (level 1) and 5x (level 3) magnifications, run:
$ python deepzoom_tiler.py -m 1 3
Or, the patches could be cropped at a single level magnification and saved in './WSI/TCGA-lung/single'. For example, extract patches at 10x magnification:
$ python deepzoom_tiler.py -m 2
Train the embedder.
We provided a modified script from this repository Pytorch implementation of SimCLR For training the embedder.
Navigate to './simclr' and edit the attributes in the configuration file 'config.yaml'. You will need to determine a batch size that fits your gpu(s). We recommend using a batch size of at least 512 to get good simclr features. The trained model weights and loss log are saved in folder './simclr/runs'.
If patches are cropped in single magnification.
cd simclr
$ python run.py
If patches are cropped in multiple magnifications, the embedder for each magnification needs to be trained separately to achieve better results.
$ python run.py --multiscale=1 --level=low
$ python run.py --multiscale=1 --level=high
Otherwise, you could use the trained embedder for Camelyon16 and TCGA
Compute the features.
Compute the features for single magnification:
$ cd ..
$ python compute_feats.py --dataset=TCGA-lung
The last trained embedder will be used by default. To use a specific embedder, set the option
--weights=[RUN_NAME]
, where[RUN_NAME]
is a folder name insidesimclr/runs/
. Or, compute the features for multiple magnifications:
$ python compute_feats.py --dataset=TCGA-lung --magnification=tree
To use a specific embedder for each magnification, set option --weights_low=[RUN_NAME]
(embedder for low magnification) and --weights_high=[RUN_NAME]
(embedder for high magnification).
To use ImageNet pretrained CNN for feature computing (batch normalization needed):
$ python compute_feats.py --weights=ImageNet --norm_layer=batch
Specify the argument
--magnification=high
or--magnification=low
if the patches are cropped in multi-magnifications but only one magnification is to be processed.
Start training.
$ python train_tcga.py --dataset=TCGA-lung
- Place WSI files as
WSI\[DATASET_NAME]\[CATEGORY_NAME]\[SLIDE_FOLDER_NAME] (optional)\SLIDE_NAME.svs
.
For binary classifier, the negative class should have
[CATEGORY_NAME]
at index0
when sorted alphabetically. For multi-class classifier, if you have a negative class (not belonging to any of the positive classes), the folder should have[CATEGORY_NAME]
at the last index when sorted alphabetically. The naming of the class folders does not matter if you do not have a negative class.
- Crop patches.
$ python deepzoom_tiler.py -m 2 -d [DATASET_NAME]
Set flag
-m [LEVEL 1] [LEVEL 2]
to crop patches from multiple magnifications.
- Train an embedder.
$ cd simclr
$ python run.py --dataset=[DATASET_NAME]
Set flag
--multiscale=1
and flag--level=low
or--level=high
to train an embedder for each magnification if the patches are cropped from multiple magnifications.
- Compute features using the embedder.
$ cd ..
$ python compute_feats.py --dataset=[DATASET_NAME]
Set flag
--magnification=tree
to compute the features for multiple magnifications. This will use the last trained embedder to compute the features, if you want to use an embedder from a specific run, add the option--weights=[RUN_NAME]
, where[RUN_NAME]
is a folder name insidesimclr/runs/
. If you have an embedder you want to use, you can place the weight file assimclr/runs/[RUN_NAME]/checkpoints/model.pth
and pass the[RUN_NAME]
to this option. To use a specific embedder for each magnification, set option--weights_low=[RUN_NAME]
(embedder for low magnification) and--weights_high=[RUN_NAME]
(embedder for high magnification). The embedder architecture is ResNet18 with instance normalization.
- Training.
$ python train_tcga.py --dataset=[DATASET_NAME]
You will need to adjust
--num_classes
option if the dataset contains more than 2 positive classes or only 1 positive class and 1 negative class (binary classifier). See the next section for details.
- For each bag, there is a .csv file where each row contains the feature of an instance. The .csv is named as "bagID.csv" and put into a folder named "dataset-name/category/".
- There is a "dataset-name.csv" file with two columns where the first column contains the paths to all bagID.csv files, and the second column contains the bag labels.
- Labels.
For binary classifier, use
1
for positive bags and0
for negative bags. Use--num_classes=1
at training.
For multi-class classifier (N
positive classes and one optional negative class), use0~(N-1)
for positive classes. If you have a negative class (not belonging to any one of the positive classes), useN
for its label. Use--num_classes=N
(N
equals the number of positive classes) at training.
If you use the code or results in your research, please use the following BibTeX entry.
@InProceedings{Li_2021_CVPR,
author = {Li, Bin and Li, Yin and Eliceiri, Kevin W.},
title = {Dual-Stream Multiple Instance Learning Network for Whole Slide Image Classification With Self-Supervised Contrastive Learning},
booktitle = {Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
month = {June},
year = {2021},
pages = {14318-14328}
}