Views
No views yet
Note: This model is an artificial intelligence tool capable of automatically segmenting pan-cancer lesions in 3D computed tomography (CT) scans. As with all medical AI, this model remains an assistive tool: it does not replace the expertise of a radiologist and requires clinical validation for diagnostic use.
checkpoint_final.pth (fold 0) into a single, self-contained ONNX graph for deployment outside the nnU-Net Python stack (ONNX Runtime / TensorRT).checkpoint_final.pth.plans.json / dataset.json reconstructed from the checkpoint. The original Hugging Face repo does not actually contain these two files (despite what its model card's file listing suggests). Both are embedded by nnU-Net in every checkpoint's so they were extracted directly from checkpoint_final.pth rather than reconstructed by hand — guaranteeing an exact match with the weights.nnUNetTrainerWandb2000 (from the associated GitHub repo) is required to reload the checkpoint; it was registered into the local nnU-Net installation for this export only and does not affect the exported graph.torch.onnx exporter rather than the newer dynamo-based one. The dynamo exporter externalizes weights into a companion .onnx.data file by default regardless of model size; since this model (~400 MB) is well under the ~2 GB protobuf limit, the legacy exporter keeps everything in a single .onnx file — simpler to move/version/deploy.onnx.checker.check_model passes, and a forward pass was verified end-to-end with ONNX Runtime (CPU).x, float32, shape [1, 1, 64, 192, 192] (single-channel CT patch, already normalized/resampled per plans.json; axis order Z, Y, X). This matches the 3d_fullres training patch_size [64, 192, 192] from plans.json.
Output: float32, shape [1, 2, 64, 192, 192] — raw logits for 2 classes (0 = background, 1 = tumor), no softmax/argmax applied, no sliding-window aggregation (single patch only — that logic must be implemented by the calling inference engine).unet_pansegx.onnx), this repository provides an optional TensorRT execution cache (trt_engine_cache_fp16.zip).
This cache eliminates the compilation/parsing time (which can take several minutes) during the first inference by loading a graph already optimized and compiled for the target GPU.[1, 1, 64, 192, 192]), so TensorRT can consume it directly without graph splitting, ensuring maximum performance.⚠️ The TensorRT cache is tied to the exact ONNX input shape. It must be (re)compiled against the current[1, 1, 64, 192, 192]graph; any cache built for a different shape will be rejected and ONNX Runtime will recompile a valid engine on first inference.
sm86 (NVIDIA Ampere Architecture). Compatible with: RTX 3070, RTX 3080, RTX 3090, RTX A10G, RTX A40.FP161.19.210.3.012.2 (or a compatible 12.x series used by TRT 10.3 libraries)22.04 LTS x86_64TensorRT engine failed to load error), or if you are using a different GPU architecture (e.g., Tesla T4, Ada Lovelace RTX 4x00): Do not use, or simply delete, the extracted files from this zip archive. Run the ONNX inference using the TensorRT backend as usual. ONNX Runtime will detect the missing or mismatched cache and will automatically recompile/re-parse a new, valid engine tailored to your machine. This takes a few minutes on the very first inference, but all subsequent ones will be accelerated.train_label + DeepLesion5K-MedSAM2 pseudo-labels).nnUNetResEncUNetMPlans), configuration 3d_fullres.nnUNetTrainerWandb2000, 2000 epochs, fold 0 (official competition split via splits_final.json).| Metric | Mean | Median | Std |
|---|---|---|---|
| Lesion DSC | 0.3278 | 0.2318 | 0.2883 |
| Lesion NSD (2 mm) | 0.1797 | 0.1046 | 0.2029 |
EOLP. (2026). PANSEGX: An ONNX export of the vanilla baseline for CVPR 2026 Pan-Cancer Segmentation. Hugging Face. https://huggingface.co/EOLP/PANSEGX
KS987. CVPR2026-PanCancerSeg-baseline: Vanilla nnU-Net v2 Baseline for CVPR 2026 Task 1: Pan-Cancer Segmentation. Hugging Face. https://huggingface.co/KS987/CVPR2026-PanCancerSeg-baseline
Isensee, F., Jaeger, P.F., Kohl, S.A.A. et al. (2021). nnU-Net: a self-configuring method for deep learning-based biomedical image segmentation. Nature Methods 18, 203–211.
FLARE-MedFM/FLARE-Task1-Pancancer. Hugging Face Datasets. https://huggingface.co/datasets/FLARE-MedFM/FLARE-Task1-Pancancer