Dataset Viewer
Duplicate
The dataset viewer is not available for this split.
Cannot load the dataset split (in streaming mode) to extract the first rows.
Error code:   StreamingRowsError
Exception:    ImportError
Message:      To support decoding NIfTI files, please install 'nibabel'.
Traceback:    Traceback (most recent call last):
                File "/src/services/worker/src/worker/utils.py", line 99, in get_rows_or_raise
                  return get_rows(
                         ^^^^^^^^^
                File "/src/libs/libcommon/src/libcommon/utils.py", line 272, in decorator
                  return func(*args, **kwargs)
                         ^^^^^^^^^^^^^^^^^^^^^
                File "/src/services/worker/src/worker/utils.py", line 77, in get_rows
                  rows_plus_one = list(itertools.islice(ds, rows_max_number + 1))
                                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/iterable_dataset.py", line 2690, in __iter__
                  for key, example in ex_iterable:
                                      ^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/iterable_dataset.py", line 2240, in __iter__
                  example = _apply_feature_types_on_example(
                            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/iterable_dataset.py", line 2159, in _apply_feature_types_on_example
                  decoded_example = features.decode_example(encoded_example, token_per_repo_id=token_per_repo_id)
                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/features/features.py", line 2204, in decode_example
                  column_name: decode_nested_example(feature, value, token_per_repo_id=token_per_repo_id)
                               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/features/features.py", line 1508, in decode_nested_example
                  return schema.decode_example(obj, token_per_repo_id=token_per_repo_id) if obj is not None else None
                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/features/nifti.py", line 172, in decode_example
                  raise ImportError("To support decoding NIfTI files, please install 'nibabel'.")
              ImportError: To support decoding NIfTI files, please install 'nibabel'.

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

VerSeFusion-Sample

A re-fused, PIR-canonical version of the VerSe 2019 and VerSe 2020 vertebra segmentation challenges, with VERIDAH (Möller 2026) label corrections applied for thoracolumbar transitional vertebrae.

Dataset stats

  • Total scans: 10
  • Total patients: 10
  • Splits: training=1, validation=4, test=5
  • Source: VerSe 2019 + VerSe 2020 (combined) with VERIDAH corrections
  • Canonical orientation: PIR (axis 0 = P, axis 1 = I, axis 2 = R)
  • VERIDAH-corrected subjects: 0

Orientation

Every scan in this dataset has been reoriented to a single canonical frame:

  • axis 0 increases toward P (posterior — i.e., anterior → posterior)
  • axis 1 increases toward I (inferior — i.e., superior → inferior; this is the spine axis)
  • axis 2 increases toward R (right — i.e., left → right)

This is verified end-to-end: see orientation_audit.json for the per-subject report. Rendering conventions in previews/:

  • Coronal: head at top, patient's right at viewer's right
  • Axial: anterior at top, patient's right at viewer's right
  • Sagittal: head at top, anterior at left

Structure

gregoryschwingmdphd/VerseFusion-Sample/
├── README.md
├── LICENSE
├── splits.csv                  # series_id → split (training/validation/test)
├── orientation_audit.json      # per-subject orientation verification
├── scans/
│   └── <series_id>/
│       ├── ct.nii.gz           # CT volume, HU values, PIR-oriented
│       ├── mask.nii.gz         # vertebra labels (uint8), PIR-oriented
│       └── meta.json           # per-scan provenance
├── corrections/
│   └── veridah_manifest.json   # which subjects had labels corrected
└── previews/                   # optional QC renders
    └── <series_id>.png

Label schema

Label Anatomy Label Anatomy
1–7 C1–C7 20 L1
8 T1 21 L2
9 T2 22 L3
10 T3 23 L4
11 T4 24 L5
12 T5 25 L6 (supernumerary lumbar)
13 T6 26 sacrum (variably annotated)
14 T7 27 coccyx
15 T8 28 T13 (supernumerary thoracic)
16 T9
17 T10
18 T11
19 T12

Loading example

import nibabel as nib

ct  = nib.load("scans/verse001/ct.nii.gz")
msk = nib.load("scans/verse001/mask.nii.gz")

# Both are guaranteed to be PIR-oriented:
assert nib.aff2axcodes(ct.affine)  == ('P', 'I', 'R')
assert nib.aff2axcodes(msk.affine) == ('P', 'I', 'R')

Citation

If you use this dataset, please cite the original VerSe challenges and the VERIDAH corrections paper:

@article{sekuboyina2021verse,
  title={VerSe: A vertebrae labelling and segmentation benchmark for multi-detector CT images},
  author={Sekuboyina, A. and others},
  journal={Medical Image Analysis},
  year={2021}
}

@article{loffler2020verse2020,
  title={A vertebral segmentation dataset with fracture grading},
  author={Löffler, M.T. and others},
  journal={Radiology: Artificial Intelligence},
  year={2020}
}

@article{moller2026veridah,
  title={VERIDAH: Vertebral identification and transitional anomaly detection},
  author={Möller, H. and others},
  year={2026}
}

Acknowledgments

VerSe challenge data: Technical University Munich. VERIDAH corrections: H. Möller et al. (2026).

Note: this is a sample

This is a 10-scan sample from the full dataset, chosen as the most-completely-labeled scans (highest unique-vertebra-label count, with VERIDAH-corrected subjects prioritized to showcase the thoracolumbar transitional-vertebra corrections).

For the full VerSeFusion dataset, see: https://huggingface.co/datasets/gregoryschwingmdphd/VerseFusion

Downloads last month
54