Datasets:

License:
Dataset Viewer

The dataset viewer is not available because its heuristics could not detect any supported data files. You can try uploading some data files, or configuring the data files location manually.

FLARE Task2 Laptop Seg Dataset

20220309-FLARE22-Pictures-2.png

Data Description

This is the dataset for MICCAI FLARE 2024-2025 Task2: Abdominal CT Organ Segmentation on Laptop. The training set includes 2050 cases, where 50 cases have ground-truth labels from the FLARE22 dataset, and the remaining 2000 cases have pseudo labels generated by the FLARE 2022 winning solution. The old validation set and testing set are merged as a new validation set with 250 cases. For those participants who are constrained by computing resources, we also provide an unlabeled core set to develop the methods, where 50 unlabeled CT scans are sampled from the original pseudo training set.

Data Structure

coreset_train_50_random: 50 unlabeled CT scans sampled from the train_pseudo_label.

train_gt_label: 50 CT scans with ground-truth labels.

train_pseudo_label: 2000 CT scans with pseudo labels generated by the FLARE 2022 winning solution.

validation: 200 hidden validation set and 50 public validation set.

FLARE-Task2-LaptopSeg/
β”œβ”€β”€ coreset_train_50_random/
β”œβ”€β”€ train_gt_label/
β”‚    β”œβ”€β”€ imagesTr/
β”‚    β”œβ”€β”€ labelsTr/
β”‚    β””── dataset.json
β”œβ”€β”€ train_pseudo_label/
β”‚    β”œβ”€β”€ imagesTr/
β”‚    β”œβ”€β”€ pseudo_label_aladdin5_flare22.7z
β”‚    β””── pseudo_label_blackbean_flare22.zip
β”œβ”€β”€ validation/
β”‚    β”œβ”€β”€ Validation-Hidden-Images/
β”‚    β”œβ”€β”€ Validation-Public-Images/
β”‚    β””── Validation-Public-Labels/
└── README.md

Dataset Download Instructions

Participants can download the complete dataset using the following Python script:

from huggingface_hub import snapshot_download

local_dir = "./FLARE-Task2-LaptopSeg"
snapshot_download(
    repo_id="FLARE-MedFM/FLARE-Task2-LaptopSeg",
    repo_type="dataset",
    local_dir=local_dir,
    local_dir_use_symlinks=False,
    resume_download=True,
)
Downloads last month
442