DinoBloom: A Foundation Model for Generalizable Cell Embeddings in Hematology
Paper • 2404.05022 • Published • 3
Exception: SplitsNotFoundError
Message: The split names could not be parsed from the dataset config.
Traceback: Traceback (most recent call last):
File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 286, in get_dataset_config_info
for split_generator in builder._split_generators(
~~~~~~~~~~~~~~~~~~~~~~~~~^
StreamingDownloadManager(base_path=builder.base_path, download_config=download_config)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/hdf5/hdf5.py", line 49, in _split_generators
import h5py
ModuleNotFoundError: No module named 'h5py'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/src/services/worker/src/worker/job_runners/config/split_names.py", line 66, in compute_split_names_from_streaming_response
for split in get_dataset_split_names(
~~~~~~~~~~~~~~~~~~~~~~~^
path=dataset,
^^^^^^^^^^^^^
config_name=config,
^^^^^^^^^^^^^^^^^^^
token=hf_token,
^^^^^^^^^^^^^^^
)
^
File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 340, in get_dataset_split_names
info = get_dataset_config_info(
path,
...<6 lines>...
**config_kwargs,
)
File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 291, in get_dataset_config_info
raise SplitsNotFoundError("The split names could not be parsed from the dataset config.") from err
datasets.inspect.SplitsNotFoundError: The split names could not be parsed from the dataset config.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.
Per-patient image embeddings of peripheral blood smears, extracted with the DinoBloom-B foundation model (code, paper).
Each .h5 file contains the stacked DinoBloom-B embeddings for all single-cell crops of one patient.
patient_embeddings/
├── caitomorph/ # 409 patients — caitomorph cohort (Dasdelen et al., 2026)
├── aml_hehr/ # 189 patients — AML genetic-subtype cohort (Hehr et al., 2023)
└── apl_aml/ # 106 patients — APL vs. AML cohort (Sidhom et al., 2021)
Each patient .h5 holds:
| key | shape | dtype | description |
|---|---|---|---|
features |
(N, 768) |
float32 | DinoBloom-B embedding per single-cell crop |
labels |
() |
int64 | patient-level class label |
import h5py
with h5py.File("patient_embeddings/caitomorph/ALK_183.h5", "r") as f:
features = f["features"][:] # (N_cells, 768)
label = int(f["labels"][()]) # patient label
If you use these embeddings, please cite DinoBloom (the embedding model) and the caitomorph paper (this embedding release):
@inproceedings{koch2024dinobloom,
title={DinoBloom: A Foundation Model for Generalizable Cell Embeddings in Hematology},
author={Koch, Valentin and Wagner, Sophia J. and Kazeminia, Salome and Sancar, Ece and Hehr, Matthias and Schnabel, Julia A. and Peng, Tingying and Marr, Carsten},
booktitle={MICCAI},
year={2024}
}
@article{dasdelen2026ai,
title={AI-based hematological malignancy prediction from peripheral blood smears in a large diagnostic laboratory cohort},
author={Dasdelen, Muhammed Furkan and Kukuljan, Ivan and Lienemann, Peter and Ozlugedik, Fatih and Sadafi, Ario and Hehr, Matthias and Spiekermann, Karsten and Pohlkamp, Christian and Marr, Carsten},
journal={Leukemia},
pages={1--5},
year={2026},
publisher={Nature Publishing Group UK London}
}
If you use the corresponding patient cohorts, please also cite the original dataset paper:
caitomorph/ → Dasdelen et al., 2026:@article{dasdelen2026ai,
title={AI-based hematological malignancy prediction from peripheral blood smears in a large diagnostic laboratory cohort},
author={Dasdelen, Muhammed Furkan and Kukuljan, Ivan and Lienemann, Peter and Ozlugedik, Fatih and Sadafi, Ario and Hehr, Matthias and Spiekermann, Karsten and Pohlkamp, Christian and Marr, Carsten},
journal={Leukemia},
pages={1--5},
year={2026},
publisher={Nature Publishing Group UK London}
}
aml_hehr/ → Hehr et al., 2023:@article{hehr2023explainable,
title={Explainable AI identifies diagnostic cells of genetic AML subtypes},
author={Hehr, Matthias and Sadafi, Ario and Matek, Christian and Lienemann, Peter and Pohlkamp, Christian and Haferlach, Torsten and Spiekermann, Karsten and Marr, Carsten},
journal={PLOS Digital Health},
volume={2},
number={3},
pages={e0000187},
year={2023},
publisher={Public Library of Science}
}
apl_aml/ → Sidhom et al., 2021:@article{sidhom2021deep,
title={Deep learning for diagnosis of acute promyelocytic leukemia via recognition of genomically imprinted morphologic features},
author={Sidhom, John-William and Siddarthan, Ingharan J. and Lai, Bo-Shiun and Luo, Adam and Hambley, Bryan C. and Bynum, Jennifer and Duffield, Amy S. and Streiff, Michael B. and Moliterno, Alison R. and Imus, Philip and others},
journal={NPJ Precision Oncology},
volume={5},
number={1},
pages={38},
year={2021},
publisher={Nature Publishing Group}
}