CoolFace
Datasetpublic

Cilem/mixed-histopathology-512

Dataset Card for Mixed Histopathology Dataset Dataset Summary This dataset contains 512x512 patches of a group of histopathology images taken from the CAMELYON16 , CANCER IMAGING ARCHIVE-KIDNEY, CANCER IMAGING ARCHIVE-COLON, CANCER IMAGING ARCHIVE-LUNG datasets and embedding vectors extracted from these patches using the Google Path Foundation model. Thumbnail of Main Slide Usage CAMELYON16: List of images taken from CAMELYON16… See the full description on the dataset page: https://huggingface.co/datasets/Cilem/mixed-histopathology-512.

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes54downloads
Dataset Card

Dataset Card for Mixed Histopathology Dataset

Dataset Summary

This dataset contains 512x512 patches of a group of histopathology images taken from the CAMELYON16 , CANCER IMAGING ARCHIVE-KIDNEY, CANCER IMAGING ARCHIVE-COLON, CANCER IMAGING ARCHIVE-LUNG datasets and embedding vectors extracted from these patches using the Google Path Foundation model.

[image]

Thumbnail of Main Slide

[image]

Usage

  • CAMELYON16: List of images taken from CAMELYON16 dataset:
  • test_001.tif
  • test_002.tif
  • test_003.tif
  • test_004.tif
  • test_005.tif
  • test_006.tif
  • test_007.tif
  • test_008.tif
  • test_009.tif
  • test_010.tif
  • CANCER IMAGING ARCHIVE-KIDNEY: List of images taken from CANCER IMAGING ARCHIVE-KIDNEY dataset:
  • C3L-00004-21.svs
  • C3L-00004-26.svs
  • C3L-00010-21.svs
  • C3L-00010-26.svs
  • C3L-00011-21.svs
  • C3L-00011-26.svs
  • C3L-00026-21.svs
  • C3L-00026-26.svs
  • C3L-00079-21.svs
  • C3L-00079-26.svs
  • CANCER IMAGING ARCHIVE-COLON: List of images taken from CANCER IMAGING ARCHIVE-COLON dataset:
  • MSB-00241-01-05.svs
  • MSB-00241-01-06.svs
  • MSB-00352-03-05.svs
  • MSB-00352-03-10.svs
  • MSB-00352-05-02.svs
  • MSB-00643-03-06.svs
  • MSB-00643-03-11.svs
  • MSB-00643-03-12.svs
  • MSB-00643-03-13.svs
  • MSB-00952-01-02.svs
  • CANCER IMAGING ARCHIVE-LUNG: List of images taken from CANCER IMAGING ARCHIVE-LUNG dataset:
  • C3L-00001-21.svs
  • C3L-00001-26.svs
  • C3L-00009-21.svs
  • C3L-00009-26.svs
  • C3L-00080-21.svs
  • C3L-00080-26.svs
  • C3L-00083-21.svs
  • C3L-00083-26.svs
  • C3L-00093-21.svs
  • C3L-00093-26.svs
  • The slide list given above can be found under the *wsis* folder.
python
from datasets import load_dataset
import openslide as ops


dataset = load_dataset("Cilem/histopathology-1024")
slide_name = dataset['train'][0]['slide_name']
organ = dataset['train'][0]['organ']
resize = dataset['train'][0]['resize']
path = os.path.join('wsis', organ, slide_name)
slide = ops.OpenSlide(path)
patch = slide.read_region((x, y), 0, patch_size)
patch = patch.resize(resize)
display(patch)

Supported Tasks

Machine learning applications that can be performed using this dataset:

  • Classification
  • Segmentation
  • Image generation

Languages

  • English

Dataset Structure

Data Fields

  • organ: Organ name of the patch.
  • slide_name: Main slide name of the patch.
  • x: X coordinate of the patch.
  • y: Y coordinate of the patch.
  • level: Level of the main slide.
  • patch_size: Size of the patch.
  • resize: Image size used to obtain embedding vector with Path foundation model.
  • embedding_vector: Embedding vector of the patch extracted using Path foundation model.

Dataset Creation

Source Data

Considerations for Using the Data

Social Impact and Bias

Attention should be paid to the Path Foundation model licenses provided by Google.