REVIEW 2 major objections 4 minor 25 references
RegScore: Scoring Systems for Regression Tasks
T0 review · 2 major / 4 minor · reviewed 2026-08-15 · deepseek-v4-flash
Pith's one-line read RegScore shows that sparse, interpretable scoring systems can be built for regression tasks and can match black-box accuracy when estimating mean pulmonary artery pressure.
desk verdict A genuinely new but incremental idea—regression scoring systems and personalized CLS-token heads—whose main claims depend on a preprocessing pipeline that must be nested inside CV to be trusted. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing object is the k-sparse ridge regression on a binarized feature matrix, expressed as $\min_\beta \|y - \hat X \beta\|_2^2 + \lambda_2 \|\beta\|_2^2$ subject to $\|\beta\|_0 \le k$, which forces the final score to depend on at most k binary conditions. Beam search (adapted from FasterRisk) and OKRidge are the two solvers; the beam-search version assumes that a good size-k model contains a good size-(k−1) model, while OKRidge uses branch-and-bound with lower bounds. For the personalized variants, the machinery shifts to the CLS token of the TIP transformer: a linear layer turns the CLS token into N+1 per-sample weights for PLR, and a gating function with a top-k selection turns it into a sparse per-sample score for PRS.
What would settle it
Rerun the 5-fold cross-validation with discretization and feature selection recomputed inside each training fold, using the same test folds, and compare MAE and F1; if the numbers shift by more than the reported standard deviations, the reported generalization advantage is partly an artifact of leakage.
Extended reading notes
Core claim
RegScore is a sparse, interpretable scoring system for regression: continuous and categorical features are first binarized by discretization (MDLP or tertiles), then a k-sparse ridge regression minimizes squared error while using at most k binary features, with the weights solved by beam search or by the OKRidge branch-and-bound algorithm. On the study's dataset, both variants reach a mean absolute error of about 7.73–7.75 mmHg for mean pulmonary artery pressure, and the same score thresholded at 25 mmHg outperforms the classification scoring systems RiskSLIM, MISS, and FasterRisk in accuracy and F1. For bimodal data, the paper uses the CLS token of a TIP transformer—the learned representation token—to generate personalized linear regression weights per patient (PLR), or to gate the binarized features so that only the top-k contribute to a per-patient score (PRS). PRS achieves the highest F1 of 93.84% among all compared methods, edging out the full black-box TIP model, while PLR stays within 0.3 mmHg of TIP's mean absolute error. The paper's claim is that these sparse, transparent models are competitive with, and sometimes better than, state-of-the-art black-box models.
Load-bearing premise
The results assume that discretization bins, missing-value thresholds, and f-regression feature selection are all fitted on the training folds alone and never on the held-out test set, a detail the paper does not explicitly confirm.
Editorial extensions
If this is right
- RegScore returns a continuous mPAP estimate in mmHg, so a clinician can see exactly which binarized features (e.g. septal angle, reveal score) add or subtract points from the baseline 40.5 mmHg.
- At both k=5 and k=50, RegScore outperforms the classification scoring systems RiskSLIM, MISS, and FasterRisk on PH classification, with the differences reaching statistical significance.
- PRS reaches the best F1 among all models compared, including black-box multimodal transformers, while remaining interpretable through its per-patient feature gates.
- RegScore can be trained in about 55 seconds, making it practical to generate and inspect many sparse models before choosing one.
- Larger model sizes k improve both regression and classification performance of RegScore, giving an explicit dial for the interpretability-accuracy trade-off.
Reading between the lines
- The paper's ablations show that switching the discretization method (MDLP vs tertiles) degrades performance, so the method's success on a new dataset will likely depend on choosing a binning strategy matched to that data.
- PLR's per-sample weight vectors could be mined for patient-level feature importance or subgroup patterns, a use the paper only gestures at with mean weights.
- A direct test of the claimed generalizability would be to apply RegScore to other continuous clinical endpoints defined by thresholds—for example, ejection fraction or laboratory values—and check whether the accuracy-interpretability balance persists.
- Because the paper does not state explicitly that every preprocessing step is refit inside each cross-validation fold, rerunning the pipeline with fold-local discretization and feature selection is a needed check on the size of the reported advantage.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper introduces RegScore, a sparse and interpretable scoring system for regression, obtained by solving a k-sparse ridge regression on binarized tabular features using either beam search (FasterRisk-style) or OKRidge. It then extends this idea to bimodal deep learning by using the CLS token of the TIP transformer to generate Personalized Linear Regression (PLR) weights and a Personalized RegScore (PRS) with a gating mechanism. The method is evaluated on the ASPIRE dataset for estimating mean pulmonary artery pressure (mPAP) and for pulmonary hypertension classification, with comparisons against classical scoring systems, tabular machine learning models, and deep multimodal baselines. The paper claims that RegScore, PLR, and PRS achieve performance comparable to or better than state-of-the-art black-box models while providing interpretability, and it provides a public code repository.
Significance. If the empirical results withstand scrutiny, the contribution is meaningful: it extends interpretable scoring systems from classification to regression, introduces a way to make bimodal deep-learning predictions more transparent through personalized linear scoring, and demonstrates the approach on a clinically relevant dataset with a public code release. The formulations in Section 2 are simple and consistent, and the paper includes ablations, comparisons against multiple baselines, and example scores in Table 4. However, the central empirical claim currently depends on evaluation details that are not fully specified, and the reported margins over many baselines are small; therefore, the significance of the contribution hinges on whether the evaluation protocol is confirmable as leakage-free.
major comments (2)
- [Section 3, Implementation details] The manuscript does not state that f-regression feature selection, MDLP/tertile discretization, and standardization are fitted only on each training fold. Because f-regression uses the mPAP labels and MDLP uses target information, fitting these steps on the full 1790-sample training set before the 5-fold split would leak validation-fold information into training, and fitting them on all 2051 samples would leak test information; either would optimistically bias the metrics in Tables 1 and 2. This concern is load-bearing because the headline margins are small (e.g., PRS F1 93.84 versus TabAttention 93.59; RegScoreOKR MAE 7.73 versus GBR 7.67 and RF 7.61). The authors should specify the exact preprocessing pipeline and re-run the experiments with all target-dependent preprocessing nested inside each cross-validation fold.
- [Section 3, Implementation details and Tables 1-2] The sentence 'Mean and standard deviation are reported across the test set over five folds' is ambiguous, and the paired t-test p-values appear to compare five fold-trained models on the same 261 test samples. If the same test set is evaluated five times, the paired observations are not independent, so a paired t-test on five folds does not support the claim of a statistically significant difference. The significance claims in Section 4 (e.g., 'RegScore outperformed other scoring systems on the classification task (p-value <0.05)') therefore need either an appropriate test with independent units or a correction for the multiple comparisons across baselines, and the number of independent test observations used for testing should be reported.
minor comments (4)
- [Table 1] The phrase 'Webold' appears to be a typo for 'We bold', and several numerical entries have inconsistent spacing (e.g., '66.05± 21.5').
- [Section 3, Comparison with state-of-the-art methods] The main text refers to 'Gradient Boosting Decision Trees (GBDT)' but Table 2 labels the method 'GBR'; please unify the naming.
- [Section 2, Personalized RegScore (PRS)] Equation (3) defines the gating scores and soft/hard gates, but the text does not fully specify how the gated binary features are combined with personalized weights to produce the final prediction; one clarifying sentence would improve reproducibility.
- [Figure 2] The right panel begins with an apparent stray label 'Mean i' before the feature names; this should be cleaned up, and the feature abbreviations should be defined in the caption or text.
Circularity Check
No significant circularity: RegScore, PLR, and PRS are supervised models trained and evaluated on held-out splits; self-citations appear only as comparison baselines.
full rationale
The paper's central claim is empirical: RegScore minimizes Eq. (1), a sparse ridge regression objective on binarized tabular features, using beam search or OKRidge, and is evaluated on a 261-sample held-out test set with 5-fold cross-validation on a separate 1790-sample training set. Nothing in Eq. (1) or in the beam-search/OKRidge optimization encodes the reported MAE or F1 values; those are measured, not derived. PLR and PRS are supervised heads trained on the CLS token of TIP, and their predictions are linear combinations of tabular features with network-generated coefficients, again evaluated on the held-out test set against external or prior baselines. Self-citations (MISS, TabMixer, TabAttention) are used as baseline comparisons rather than as justification for the method's validity, and TIP itself is an external method. No fitted parameter is renamed as a prediction, no uniqueness theorem is imported from the authors' prior work, and no ansatz is smuggled in via self-citation. The stated limitation in Section 4, that interpretable models reduce regression performance relative to TIP, qualifies the abstract's 'comparable or better' wording but is an inconsistency, not circularity. The possible issue that MDLP/tertile bins or f-regression feature selection may have been fit outside the cross-validation loop is a correctness or leakage concern, not a circular reduction by construction; it does not make the reported prediction equal to the training input by definition.
Assumptions & free parameters
free parameters (6)
- k (model size) =
5 and 50
- lambda2 (ridge regularization) =
1e-8
- B (beam search width) =
10
- tau (soft gating temperature) =
0.1
- Discretization choice =
MDLP for RegScore, tertiles for PRS
- PH classification threshold =
25 mmHg
assumptions (5)
- domain assumption Beam search nesting assumption: a model of size k inherently contains one of the best models of size k-1.
- domain assumption Sparse ridge regression with binary features captures clinically meaningful mPAP relationships.
- domain assumption The CLS token from TIP contains sufficient information to generate per-patient regression weights and gates.
- domain assumption ASPIRE registry mPAP measurements are accurate and representative for PH scoring.
- domain assumption Preprocessing steps do not use test information.
Cite this review
Pith. "Pith review of RegScore: Scoring Systems for Regression Tasks." pith.science (2026). https://pith.science/paper/3QRNYU4M
@misc{pith2026250719155,
author = {Pith},
title = {Pith review of: RegScore: Scoring Systems for Regression Tasks},
year = {2026},
howpublished = {\url{https://pith.science/paper/3QRNYU4M}},
note = {Machine review of arXiv:2507.19155}
}
read the original abstract
Scoring systems are widely adopted in medical applications for their inherent simplicity and transparency, particularly for classification tasks involving tabular data. In this work, we introduce RegScore, a novel, sparse, and interpretable scoring system specifically designed for regression tasks. Unlike conventional scoring systems constrained to integer-valued coefficients, RegScore leverages beam search and k-sparse ridge regression to relax these restrictions, thus enhancing predictive performance. We extend RegScore to bimodal deep learning by integrating tabular data with medical images. We utilize the classification token from the TIP (Tabular Image Pretraining) transformer to generate Personalized Linear Regression parameters and a Personalized RegScore, enabling individualized scoring. We demonstrate the effectiveness of RegScore by estimating mean Pulmonary Artery Pressure using tabular data and further refine these estimates by incorporating cardiac MRI images. Experimental results show that RegScore and its personalized bimodal extensions achieve performance comparable to, or better than, state-of-the-art black-box models. Our method provides a transparent and interpretable approach for regression tasks in clinical settings, promoting more informed and trustworthy decision-making. We provide our code at https://github.com/SanoScience/RegScore.
Figures
Reference graph
Works this paper leans on
-
[1]
The workings of the indeterminate sentence law and the parole system in Illinois pp
Burgess, E.W.: Factors determining success or failure on parole. The workings of the indeterminate sentence law and the parole system in Illinois pp. 221–234 (1928)
work page 1928
-
[2]
Chen, T., Guestrin, C.: XGBoost: A scalable tree boosting system. In: Proceedings of the 22nd ACM SIGKDD International Conference on Knowledge Discovery and Data Mining. pp. 785–794. KDD ’16, ACM, New York, NY, USA (2016). https://doi.org/10.1145/2939672.2939785
arXiv 2016
-
[3]
In: International conference on machine learning
Chen, T., Kornblith, S., Norouzi, M., Hinton, G.: A simple framework for contrastive learning of visual representations. In: International conference on machine learning. pp. 1597–1607. PMLR (2020)
2020
-
[4]
In: 18th European Conference on Computer Vision (ECCV 2024) (2024)
Du, S., Zheng, S., Wang, Y., Bai, W., O’Regan, D.P., Qin, C.: TIP: Tabular-image pre-training for multimodal classification with incomplete data. In: 18th European Conference on Computer Vision (ECCV 2024) (2024)
work page 2024
-
[5]
In: Medical Image Computing and Computer Assisted Intervention–MICCAI 2020: 23rd International Conference, Lima, Peru, October 4–8, 2020, Proceedings, Part II 23
Duanmu, H., Huang, P.B., Brahmavar, S., Lin, S., Ren, T., Kong, J., Wang, F., Duong, T.Q.: Prediction of pathological complete response to neoadjuvant chemotherapy in breast cancer using deep learning with integrative imaging, molec- ular and demographic data. In: Medical Image Computing and Computer Assisted Intervention–MICCAI 2020: 23rd International C...
2020
- [6]
-
[7]
Gage, B.F., Waterman, A.D., Shannon, W., Boechler, M., Rich, M.W., Radford, M.J.: Validation of clinical classification schemes for predicting stroke: results from the national registry of atrial fibrillation. Jama285(22), 2864–2870 (2001)
work page 2001
-
[8]
Grzeszczyk, M.K., Korzeniowski, P., Alabed, S., Swift, A.J., Trzciński, T., Sitek, A.: Tabmixer: Noninvasive estimation of the mean pulmonary artery pressure via 10 M.K. Grzeszczyk et al. imaging and tabular data mixing. In: International Conference on Medical Image Computing and Computer-Assisted Intervention. pp. 670–680. Springer (2024)
work page 2024
Show all 25 references
-
[9]
In: International Conference on Medical Image Computing and Computer-Assisted Intervention
Grzeszczyk, M.K., Płotka, S., Rebizant, B., Kosińska-Kaczyńska, K., Lipa, M., Brawura-Biskupski-Samaha, R., Korzeniowski, P., Trzciński, T., Sitek, A.: Tabatten- tion: Learning attention conditionally on tabular data. In: International Conference on Medical Image Computing and...
2023
-
[10]
In: Proceedings of the 2024 SIAM International Conference on Data Mining (SDM)
Grzeszczyk, M.K., Trzciński, T., Sitek, A.: Miss: Multiclass interpretable scoring systems. In: Proceedings of the 2024 SIAM International Conference on Data Mining (SDM). pp. 55–63. SIAM (2024)
2024
-
[11]
In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition
Hager, P., Menten, M.J., Rueckert, D.: Best of both worlds: Multimodal con- trastive learning with tabular and imaging data. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition. pp. 23924–23935 (2023)
2023
-
[12]
In: Proceedings of the IEEE conference on computer vision and pattern recognition
He, K., Zhang, X., Ren, S., Sun, J.: Deep residual learning for image recognition. In: Proceedings of the IEEE conference on computer vision and pattern recognition. pp. 770–778 (2016)
2016
-
[13]
Dtsch Arztebl Int114, 73–84 (2017)
Hoeper, M.M., et al.: Pulmonary hypertension. Dtsch Arztebl Int114, 73–84 (2017). https://doi.org/10.3238/arztebl.2017.0073
2017
-
[14]
European Respiratory Journal 39, 945–955 (4 2012)
Hurdman, J., Condliffe, R., Elliot, C., Davies, C., Hill, C., et al.: Aspire registry: Assessing the spectrum of pulmonary hypertension identified at a referral centre. European Respiratory Journal 39, 945–955 (4 2012). https://doi.org/10.1183/ 09031936.00078411
2012
-
[15]
In: Forty-first International Conference on Machine Learning (2024)
Jiang, J.P., Ye, H.J., Wang, L., Yang, Y., Jiang, Y., Zhan, D.C.: Tabular in- sights, visual impacts: Transferring expertise from tables to images. In: Forty-first International Conference on Machine Learning (2024)
2024
-
[16]
In: Oh, A., Naumann, T., Globerson, A., Saenko, K., Hardt, M., Levine, S
Liu, J., Rosen, S., Zhong, C., Rudin, C.: Okridge: Scalable optimal k-sparse ridge regression. In: Oh, A., Naumann, T., Globerson, A., Saenko, K., Hardt, M., Levine, S. (eds.) Advances in Neural Information Processing Systems. vol. 36, pp. 41076–41258. Curran Associates, Inc. (2023)
2023
-
[17]
In: Proceedings of Neural Information Processing Systems (2022)
Liu, J., Zhong, C., Li, B., Seltzer, M., Rudin, C.: Fasterrisk: Fast and accurate interpretable risk scores. In: Proceedings of Neural Information Processing Systems (2022)
2022
-
[18]
Pulmonary circulation6(2), 181–190 (2016)
Lungu, A., Swift, A.J., Capener, D., Kiely, D., Hose, R., Wild, J.M.: Diagnosis of pulmonary hypertension from magnetic resonance imaging–based computational models and decision tree analysis. Pulmonary circulation6(2), 181–190 (2016)
2016
-
[19]
Journal of Machine Learning Research12, 2825–2830 (2011)
Pedregosa, F., Varoquaux, G., Gramfort, A., Michel, V., Thirion, B., Grisel, O., Blondel, M., Prettenhofer, P., Weiss, R., Dubourg, V., Vanderplas, J., Passos, A., Cournapeau, D., Brucher, M., Perrot, M., Duchesnay, E.: Scikit-learn: Machine learning in Python. Journal of Mach...
2011
-
[20]
In: Medical Image Computing and Computer Assisted Intervention–MICCAI 2021: 24th International Conference, Strasbourg, France, September 27–October 1, 2021, Proceedings, Part V 24
Pölsterl, S., Wolf, T.N., Wachinger, C.: Combining 3d image and tabular data via the dynamic affine feature map transform. In: Medical Image Computing and Computer Assisted Intervention–MICCAI 2021: 24th International Conference, Strasbourg, France, September 27–October 1, 202...
2021
-
[21]
Clinical Medicine19(3), 260 (2019)
Smith, G.B., Redfern, O.C., Pimentel, M.A., Gerry, S., Collins, G.S., Malycha, J., Prytherch, D., Schmidt, P.E., Watkinson, P.J.: The national early warning score 2 (news2). Clinical Medicine19(3), 260 (2019). https://doi.org/https://doi.org/ 10.7861/clinmedicine.19-3-260, htt...
2019 doi
-
[22]
Neuroimage189, 276–287 (2019)
Spasov, S., Passamonti, L., Duggento, A., Lio, P., Toschi, N., Initiative, A.D.N., et al.: A parameter-efficient deep learning approach to predict conversion from mild cognitive impairment to alzheimer’s disease. Neuroimage189, 276–287 (2019)
2019
-
[23]
Journal of Machine Learning Research 20(150), 1–75 (2019)
Ustun, B., Rudin, C.: Learning optimized risk scores. Journal of Machine Learning Research 20(150), 1–75 (2019)
2019
-
[24]
Scientific Reports11(1), 13505 (2021)
Vale-Silva, L.A., Rohr, K.: Long-term cancer survival prediction using multimodal deep learning. Scientific Reports11(1), 13505 (2021)
2021
-
[25]
In: Larochelle, H., Ranzato, M., Hadsell, R., Balcan, M., Lin, H
Yoon, J., Zhang, Y., Jordon, J., van der Schaar, M.: Vime: Extending the success of self- and semi-supervised learning to tabular domain. In: Larochelle, H., Ranzato, M., Hadsell, R., Balcan, M., Lin, H. (eds.) Advances in Neural Information Processing Systems. vol. 33, pp. 11...
2020
Reviewed August 15, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.