This model is a ResNet-50 convolutional neural network trained on the Kather100K dataset, which comprises 100,000 histological images of human colorectal cancer and healthy tissue. The model was developed using the TIAToolbox, an end-to-end library for advanced tissue image analytics.
The Kather100K dataset consists of 100,000 non-overlapping image patches (224 × 224 pixels) extracted from histological images of human colorectal cancer and healthy tissue. The dataset includes nine tissue classes:
1from tiatoolbox.models.architecture import get_pretrained_model
2
3# Load the pretrained ResNet-50 model trained on Kather100K
4model = get_pretrained_model(pretrained_model='resnet50-kather100k')