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.

ORCA-3DCT β€” precomputed 3D CT visual tokens for CT-RATE

πŸ“„ arXiv Β· πŸ’» GitHub Β· πŸ€— Models & Data

Encoder outputs for the whole of CT-RATE, released so that work on 3D CT token compression, pooling, retrieval and probing does not have to start by spending several hundred GPU-hours re-encoding the corpus.

Two layers:

  • uncompressed/ β€” the raw encoder grids, plus the pooled encoders' native output. Bring your own compressor.
  • compressed/ β€” ORCA and grid-average token bundles at four budgets, the exact inputs behind ORCA.

What is here

Encoder ORCA B=216 ORCA B=64 ORCA B=27 Grid avg B=216 Grid avg B=64 Grid avg B=27 Uncompressed Organ segmentation
COLIPRI 216Γ—792
8.79 GB
64Γ—792
2.60 GB
27Γ—792
1.10 GB
216Γ—768
8.53 GB
64Γ—768
2.53 GB
27Γ—768
1.07 GB
24Γ—24Γ—24Γ—768
545 GB
11Γ—24Γ—24Γ—24
0.37 GB
CT-CLIP 216Γ—536
13.0 GB
64Γ—536
3.44 GB
27Γ—536
1.45 GB
216Γ—512
12.4 GB
64Γ—512
3.29 GB
27Γ—512
1.39 GB
24Γ—24Γ—24Γ—512
710 GB
11Γ—24Γ—24Γ—24
0.93 GB
ViSD-Boost + CT-CLIP β€” β€” β€” β€” β€” β€” 5Γ—256
0.13 GB
β€”
ViSD-Boost β€” β€” β€” β€” β€” β€” 4Γ—256
0.10 GB
β€”
FVLM β€” β€” β€” β€” β€” β€” 4Γ—256
0.10 GB
β€”

Everything else:

path contents size
checkpoints/reportgen_{orcafull,avgpack}_b{27,216}__s2/step_*/ our four report-generation LoRA + projector checkpoints β€” stage 2, at the epoch with the highest clinical F1 11 GB

Cells without a link are computed but not uploaded yet β€” the COLIPRI rows are complete.

Coverage. CT-CLIP and the pooled encoders cover all of CT-RATE (47,149 train / 3,039 valid). COLIPRI covers 24,128 / 1,564, because its authors take one reconstruction per scan to be sufficient; CT-RATE ships several reconstructions of the same study.

Only the arrays we computed are hosted here. The reports, the 18 abnormality labels and the report-generation question set are CT-RATE's own files β€” take them from CT-RATE (dataset/vqa/, dataset/radiology_text_reports/, dataset/multi_abnormality_labels/).

Loading

import numpy as np
from huggingface_hub import snapshot_download

d = snapshot_download("LiangRenjie/ORCA-3DCT", repo_type="dataset",
                      allow_patterns="compressed/colipri/colipri_ORCA_b216_d792_lam0p5/*")

tokens = np.load(f"{d}/compressed/colipri/colipri_ORCA_b216_d792_lam0p5/valid.npy", mmap_mode="r")  # (1564, 216, 792) fp16
ids    = open(f"{d}/compressed/colipri/colipri_ORCA_b216_d792_lam0p5/valid_ids.txt").read().split()
tokens[ids.index("valid_1000_a_2")]        # -> (216, 792)

Organ masks are .npz, one member per volume, so a single volume decompresses on its own:

z = np.load(f"{d}/organ_masks/colipri/valid.npz")
z["valid_1000_a_2"]        # -> (11, 24, 24, 24) fp16, soft occupancy in [0, 1]
z["_channel_names"]        # -> lung, airway, heart, aorta, ...
g = np.load(f"{d}/uncompressed/colipri/valid/valid_1000_a_2.npy")   # (768, 24, 24, 24) fp16
g = g.transpose(1, 2, 3, 0)                                          # -> (24, 24, 24, 768)

Running ORCA yourself

organ_masks/ holds, for every volume, an (11, *grid) float16 array giving the fraction of each token occupied by each of eleven thoracic structures β€” lung, airway, heart, aorta, central vessels, mediastinum, hiatus, pleura, chest-wall bone, thoracic spine, upper abdomen β€” as soft occupancy in [0, 1] rather than a hard label, already resampled onto the encoder's token grid. Producing it means running TotalSegmentator over 47k volumes and resampling the 347 GB of output; 1.1 GB here replaces that. Match the set to your encoder β€” encoders resample and crop the volume differently, so a mask built for one grid does not align with another. With the uncompressed grids plus these masks, the compressor in the repository reproduces every compressed/ bundle.

License and terms

CC-BY-NC-SA-4.0, inherited from CT-RATE. Academic and research use only; no commercial use; no attempt at re-identification. These arrays are encoder features derived from CT-RATE β€” if you use them, you are bound by CT-RATE's terms and should cite CT-RATE and the encoder whose outputs you used, alongside ORCA.

@article{orca2026,
  title   = {ORCA: ORgan-Centroid Aggregation for Training-Free 3D CT Visual Token Compression},
  journal = {arXiv preprint arXiv:2608.00345},
  year    = {2026}
}
@article{hamamci2024ctrate,
  title   = {Generalist Foundation Models from a Multimodal Dataset for 3D Computed Tomography},
  author  = {Hamamci, Ibrahim Ethem and others},
  journal = {Nature Biomedical Engineering},
  year    = {2026},
  doi     = {10.1038/s41551-025-01599-y}
}
@misc{wald2025colipri,
  title  = {Comprehensive Language--Image Pre-training for 3D Medical Image Understanding},
  author = {Wald, Tassilo and Hamamci, Ibrahim Ethem and Gao, Yuan and others},
  year   = {2025},
  eprint = {2510.15042},
  archivePrefix = {arXiv}
}
Downloads last month
77

Papers for LiangRenjie/ORCA-3DCT