Let Confidence Change, Not the Prediction: Prediction-Preserving Repair for Post-hoc Calibration

Hugging Face Daily Papers Papers

Summary

This paper proposes CORD, a post-fit adapter for post-hoc calibration that repairs probability vectors to preserve original top-1 predictions while maintaining calibration quality, achieving zero TPCR and improved metrics on datasets like CIFAR and ImageNet.

Post-hoc calibration corrects reported confidence, yet a multiclass calibrator can also change the associated top-1 prediction. Accuracy captures only the net effect of these changes on correctness, not how often predictions change; the Top-1 Prediction Change Rate (TPCR) instead measures this frequency. We propose Calibrator-Output Repair for Top-1 Decision Preservation (CORD), the first post-fit adapter to impose exact prediction preservation by repairing the full calibrated probability vector. From the original and calibrated outputs alone, CORD determines the mass assigned to the original top-1. The calibrated conditional distribution allocates the remaining mass over the other classes, yielding a repaired vector whose own argmax recovers the original prediction. On the calibration split, CORD coordinates the repaired masses to retain the calibrated outputs' mean mass on original predictions whenever attainable. The adapter alters neither the fitted calibrator nor its direct output, fits no additional supervised map, and requires no user- or validation-tuned hyperparameter. Across CIFAR-10/100 and ImageNet-1K, CORD attains zero TPCR by construction and lowers mean ECE, NLL, and Brier relative to the corresponding direct outputs in every dataset; paired gains persist under distribution shift and across calibration-set sizes. CORD thus removes the preservation constraint from calibrator fitting and assigns exact recovery of the original decision to subsequent output repair. Our code is available at https://github.com/labhai/CORD.
Original Article
View Cached Full Text

Cached at: 09/04/26, 07:56 AM

Paper page - Let Confidence Change, Not the Prediction: Prediction-Preserving Repair for Post-hoc Calibration

Source: https://huggingface.co/papers/2609.01072

Abstract

CORD is a post-fit adapter that repairs calibrated probability vectors to exactly preserve original top-1 predictions while maintaining calibration quality.

Post-hoc calibrationcorrects reported confidence, yet amulticlass calibratorcan also change the associated top-1 prediction. Accuracy captures only the net effect of these changes on correctness, not how often predictions change; theTop-1 Prediction Change Rate (TPCR)instead measures this frequency. We propose Calibrator-Output Repair for Top-1 Decision Preservation (CORD), the first post-fit adapter to impose exact prediction preservation by repairing the fullcalibrated probability vector. From the original and calibrated outputs alone,CORDdetermines the mass assigned to the original top-1. The calibrated conditional distribution allocates the remaining mass over the other classes, yielding a repaired vector whose ownargmaxrecovers the original prediction. On the calibration split,CORDcoordinates the repaired masses to retain the calibrated outputs’ mean mass on original predictions whenever attainable. The adapter alters neither the fitted calibrator nor its direct output, fits no additional supervised map, and requires no user- or validation-tuned hyperparameter. Across CIFAR-10/100 and ImageNet-1K,CORDattains zero TPCR by construction and lowers meanECE,NLL, and Brier relative to the corresponding direct outputs in every dataset; paired gains persist underdistribution shiftand across calibration-set sizes.CORDthus removes the preservation constraint from calibrator fitting and assigns exact recovery of the original decision to subsequent output repair. Our code is available at https://github.com/labhai/CORD.

View arXiv pageView PDFGitHubAdd to collection

Models citing this paper0

No model linking this paper

Cite arxiv.org/abs/2609.01072 in a model README.md to link it from this page.

Datasets citing this paper0

No dataset linking this paper

Cite arxiv.org/abs/2609.01072 in a dataset README.md to link it from this page.

Spaces citing this paper0

No Space linking this paper

Cite arxiv.org/abs/2609.01072 in a Space README.md to link it from this page.

Collections including this paper0

No Collection including this paper

Add this paper to acollectionto link it from this page.

Similar Articles

Retrieval-Corrected Conformal Prediction for Time Series

arXiv cs.LG

Introduces Retrieval-Corrected Conformal Prediction (RCCP), a retrieval-augmented calibration method for time series prediction intervals that selects similar past residuals and applies a scalar conformal correction to achieve target coverage with low overhead.