{"id":"0c5cdefd-880e-4e4b-9c06-38b3aec4c6b1","arxiv_id":"1908.00966","paper_version":1,"verdict":"CONDITIONAL","confidence":"HIGH","novelty_score":5.0,"correctness_risk":"medium","formal_verification":"none","parameter_count":4,"one_line_summary":"ARSOM, a mixed-integer optimization approach that selects association rules, predicts unplanned ICU transfer with AUC around 0.62 to 0.76, comparable to logistic regression and LASSO, while producing interpretable subgroup-specific rules.","lead":"This paper introduces ARSOM, a mixed-integer optimization method that selects easy-to-read association rules for predicting which emergency department patients will need an unplanned ICU transfer. It tests the method on 1,049 patients from one hospital and finds prediction accuracy comparable to standard machine learning models while keeping the rules interpretable for clinicians.","discovery_kind":"new_application","skeptic_critique":{"model":"deepseek-v4-flash","headline":"The load-bearing weakness is Section 4.1's coding of unperformed laboratory tests as negative; because test ordering is clinically driven, missingness is informative, so the discovered rules and AUC may not reflect true risk.","rationale":"I agree with the reader's assessment. The most load-bearing assumption is not the optimization machinery or the parameter settings; it is the clinical validity of the binary feature matrix, specifically Section 4.1's treatment of unperformed lab tests as negative. This assumption is load-bearing because it directly supports both components of the central claim: the interpretable symptom-outcome rules and the comparable-accuracy numbers. If it is wrong, the specific rules listed in Tables 3–7 could be artifacts of test-ordering practices rather than physiological risk, and the AUC values from 10×5-fold cross-validation could fail to transfer across settings. I would keep the verdict CONDITIONAL: the concern is serious enough to require a sensitivity analysis before the claim can be accepted as robust, but it does not by itself falsify the paper, because the authors disclose the coding rule and acknowledge broader chart-review limitations in Section 5. A re-analysis with missing-data indicators would settle the issue. I do not find a separate fatal flaw in the MIP formulation; the objective and constraints are coherent. I also note the paper would be easier to audit if code/data and the exact λ weight were released, but those are secondary to the missingness concern.","tokens_in":16183,"tokens_out":9387,"duration_ms":91665,"concrete_test":"Re-run the 10×5-fold cross-validation with a corrected encoding of the lab-dependent features (renal dysfunction, liver dysfunction, hematological dysfunction, metabolic dysfunction, abnormal white blood cell counts, and SIRS components): instead of coding unperformed tests as negative, add one binary missing-indicator per feature, or apply multiple imputation, while keeping all other preprocessing fixed. Then compare the selected rules and pooled AUC for Subgroups 1 and 4. If the top-confidence rules change materially or the AUC moves by more than 0.05, the central 'comparable accuracy and interpretable rules' claim is not robust to the missingness assumption.","verdict_should_be":"UNCHANGED","load_bearing_attack":"To support the central claim—that ARSOM yields interpretable rules with accuracy comparable to ML methods—the binary feature matrix must be a valid encoding of clinical status. Section 4.1 states: 'results of tests were considered to be negative in our study if they were not ordered.' This applies to features such as renal dysfunction, liver dysfunction, hematological dysfunction, metabolic dysfunction, abnormal white blood cell counts, and components of SIRS (Tables 1 and 3–7). In emergency practice, laboratory tests are ordered when clinically indicated, so an unperformed test is not evidence that the value is normal; it is evidence about the physician's prior probability and about workup intensity. Coding missing as negative therefore conflates 'not measured' with 'normal,' which can (i) create spurious high-confidence rules for features that are really proxies for having received a workup, (ii) bias the support, confidence, and lift values in Tables 3–7, and (iii) make AUC estimates optimistic when the same missingness mechanism is present in training and test folds but absent in another institution or after a practice change. Section 5's own limitation statement concedes 'inconsistent criteria for ordering certain examinations,' which is precisely the mechanism that makes the coding rule unsafe. A secondary concern is that the exact value of λ in Eq. (2) is never reported, but the missingness encoding is the more fundamental threat.","agreement_with_reader":"agree"},"referee_report":{"model":"deepseek-v4-flash","summary":"The paper proposes ARSOM, a two-phase rule-learning method for predicting unplanned ICU transfer from ED admission. Phase 1 uses the Apriori algorithm to generate candidate association rules satisfying user-specified minimum support, confidence, and rule-length thresholds; Phase 2 solves a mixed-integer program that selects a parsimonious set of rules maximizing coverage of positive (unplanned transfer) patients while minimizing coverage of negative patients. The method is applied to a retrospective dataset of 1049 patients from a Taiwanese teaching hospital, divided into four clinical subgroups and an all-patient group. The authors report discovered rules with support, confidence, and lift, and compare classification performance (AUC) against logistic regression, LASSO, and decision trees using 10 times 5-fold cross-validation, concluding that ARSOM is comparable to state-of-the-art methods while providing interpretable symptom-outcome rules.","tokens_in":16476,"tokens_out":6383,"duration_ms":63222,"significance":"If the empirical claims are valid, the paper makes a modest but useful contribution: it demonstrates a principled way to combine association-rule mining with optimization-based rule selection, producing transparent rules rather than a single regression equation, and it evaluates these rules on a clinically relevant outcome. Strengths include the use of held-out cross-validation for AUC estimation, comparison with three standard classifiers, and the interpretable rule tables with support/confidence/lift. However, no code or data are provided, and the central empirical claims rest on a data-encoding assumption and on several under-specified modeling choices. The clinical application is meaningful, and the two-phase decomposition is a sensible scaling strategy, but the validity of the reported rules and AUC values needs to be established more carefully.","major_comments":[{"comment":"The binary feature matrix encodes unperformed laboratory tests as negative ('results of tests were considered to be negative in our study if they were not ordered'). This is load-bearing for the central claim because many features that drive the reported rules—renal dysfunction, liver dysfunction, hematological dysfunction, metabolic dysfunction, abnormal WBC counts, and components of SIRS—are laboratory-based. In emergency practice, test ordering is driven by clinical suspicion, so an unperformed test is informative about workup intensity rather than evidence of normalcy. The coding therefore conflates 'not measured' with 'normal,' can create spurious high-confidence rules for features that are really proxies for receiving a workup, biases the support/confidence/lift values in Tables 3–7, and makes the AUC estimates in Table 8 difficult to transport to settings with different ordering practices. Section 5 itself concedes 'inconsistent criteria for ordering certain examinations,' which is precisely the mechanism that makes the coding rule unsafe. The authors should justify the coding clinically or, more convincingly, re-run the analysis with missing indicators or complete-case sensitivity analyses and report how many of the 30 features are affected by this coding.","section":"§4.1 (also §5)"},{"comment":"The objective weights are not specified consistently. Section 3.3 states 'all the parameters are set to one,' but Section 4.2 states that λ is 'a relatively large number in order to ensure all target patients to be covered by selected rules in the model.' Since λ in Eq. (2) directly trades positive coverage against parsimony and negative coverage, the reported rules and AUC depend on its value, yet the paper never reports it. In addition, the confidence threshold θc is set to 0.7 for subgroup 1 and the all-patient group but to 0.6 for the other subgroups 'since we want to include more strong association rule candidates' (Section 4.2, Table 2). This is a data-dependent tuning choice made after inspecting the data, and no nested validation or sensitivity analysis is provided for it. The authors should report the exact λ, provide a sensitivity analysis over λ and θc, and explain how the per-subgroup thresholds were chosen without using the test folds.","section":"§3.3 and §4.2"},{"comment":"The cross-validation protocol is under-specified. It is not stated whether, within each of the 10×5 folds, the Apriori candidate generation and the ARSOM-R selection are re-run on the training folds only, or whether the rule sets in Tables 3–7 (which appear to be fit on the full subgroups) are applied to held-out data. It is also not stated how a test patient who is not covered by any selected rule is scored when computing the average probability Pa, nor how the ROC threshold θp is handled. These details are necessary to determine whether the AUC values in Table 8 are honest out-of-sample estimates or are contaminated by rules selected on the full data. The authors should specify the exact cross-validation procedure, including how rules are generated and selected in each fold.","section":"§3.4, §4.3, and Table 8"},{"comment":"The claim that ARSOM is 'comparable' or 'non-inferior' to LR and LASSO is not supported by any statistical test. The reported means and standard deviations overlap substantially (e.g., subgroup 2: ARSOM 0.75±0.03 versus LASSO 0.76±0.01; subgroup 3: ARSOM 0.62±0.03 versus LR 0.58±0.02), and the 10×5 CV folds are not independent. A paired test across folds (e.g., DeLong's test for AUC or a paired Wilcoxon signed-rank test) should be reported before making a non-inferiority claim. Similarly, the word 'significant' for the association rules in Section 4.2 is used without any statistical significance test or confidence intervals for support, confidence, or lift.","section":"§4.3 and Table 8"}],"minor_comments":[{"comment":"Section 4.2 says 'diﬀerent conference thresholds θc = 0.07 for subgroup 1 and allgroup versus θc = 0.06,' but Table 2 reports 0.7 and 0.6; the decimal values should be corrected.","section":"§4.2"},{"comment":"Index 17 in Table 1 labels the feature 'Hypertension,' but every rule table and the text use 'Hypotension' (e.g., Table 3, Table 4, Table 7). This is more than a typo because hypotension is the relevant organ-dysfunction criterion, and hypertension is already listed as Index 3.","section":"Table 1"},{"comment":"Equation (2) contains the malformed sums '∑_{i=∈|I|^-}' and '∑_{i=∈|I|^+}'; these should be ∑_{i∈I^-} and ∑_{i∈I^+}.","section":"Equation (2)"},{"comment":"Table 7 lists the rule {Liver dysfunction}∨{Hematological dysfunction} twice (rows 3 and 7) with different support/confidence values; one of these entries is likely a different rule and should be corrected.","section":"Table 7"},{"comment":"The data source is inconsistent: Section 2.1 describes a suburban teaching hospital in Taichung and the corresponding author affiliation is Taichung Veterans General Hospital Puli Branch, while the Acknowledgment thanks Cheng-Ching General Hospital in Taichung for data collection; please clarify which institution provided the data.","section":"§2.1 and Acknowledgment"},{"comment":"The paper should state explicitly whether support, confidence, and lift are computed on the full subgroup data, on training folds, or on held-out data; the current presentation is ambiguous.","section":"Tables 3–7"}],"recommendation":"major_revision","confidential_remarks":"The manuscript addresses a clinically relevant problem and the optimization framework is plausible, but the missing-as-negative encoding of laboratory tests is a fundamental threat to the validity of the empirical claims, and the unreported λ combined with data-dependent threshold choices undermine reproducibility. The table inconsistencies (duplicate rule, mislabeled feature) suggest the numerical results need a careful re-check. If the authors can address the data-encoding concern with sensitivity analyses and fully specify the evaluation protocol, the paper could be viable for publication; otherwise the central empirical claim is not established."},"author_rebuttal":null,"desk_editor":{"model":"deepseek-v4-flash","letter":"First thing you should know: this is an application paper, not a new-method paper. The method is Apriori to generate candidate association rules, then a mixed-integer program to select a compact set of rules that cover positive patients and penalize negative coverage. That combination is reasonable and fits the clinical goal of getting interpretable, subgroup-specific rules. The novelty is in the application to unplanned ICU transfer from the ED, not in the optimization machinery.\n\nWhat the paper does well: the problem is clearly described, the four patient subgroups are clinically sensible, and the evaluation is honest enough. They use 10x5-fold CV, report AUC with standard deviations, and compare against LR, LASSO, and DT. The rules in Tables 3-7 are plausible and easy for a clinician to read. The limitations section is unusually candid: they acknowledge single-center retrospective data, chart-review inaccuracy, and inconsistent criteria for ordering examinations. The citation pattern looks normal; they cite their own earlier clinical work where relevant, and that is legitimate.\n\nThe soft spots are real. The biggest one is Section 4.1: unperformed lab tests were coded as negative. For features like renal dysfunction, liver dysfunction, and abnormal WBC counts, this conflates 'not measured' with 'normal.' In emergency medicine, test ordering is driven by clinical suspicion, so missingness is informative. That means some high-confidence rules may really be proxies for workup intensity, and the AUC estimates may be optimistic even though the held-out folds prevent direct circularity. The authors even concede the mechanism in their limitations statement. This is not a minor quibble; it affects the validity of the rules and the generalization of the accuracy claims.\n\nOther issues are smaller. The per-subgroup confidence thresholds in Table 2 were adjusted after looking at the data to include more rule candidates, so the reported performance is mildly tuned. The weight lambda is described only as 'relatively large,' so the objective's exact trade-off is unspecified. The 'non-inferior' claim about AUC is not backed by a statistical test. No code or data are released, which limits reproducibility.\n\nWho is this for? A reader interested in interpretable clinical decision support will get value from the framing and the rules, especially the subgroup-specific findings. A reader looking for methodological advances should look elsewhere. It deserves a serious referee, but the missingness issue needs to be addressed directly, either with sensitivity analysis or a clear argument that the coding assumption is clinically acceptable in this dataset. I would send it out, with a referee who understands clinical data preprocessing.","headline":"A competent application paper that does something useful with interpretable rules for a real clinical problem, but the missing-lab-tests-as-negative coding is a genuine threat to the reported rules and AUCs.","tokens_in":16975,"tokens_out":1880,"would_cite":false,"duration_ms":21997,"reading_group":"maybe","serious_thinker":"yes","would_accept_peer_review":true},"rs_alignment":null,"lean_confirmation":null,"pith_extraction":{"msc":[],"pacs":[],"model":"deepseek-v4-flash","headline":"A mixed-integer optimizer can select short association rules that identify emergency-department patients at risk of unplanned ICU transfer with accuracy comparable to logistic regression and LASSO.","keywords":["unplanned ICU transfer","emergency department","association rules","mixed-integer optimization","clinical decision support","rule-based classification","AUC evaluation","patient subgroups"],"falsifier":"Concrete check: re-run ARSOM on the same cohort after re-coding unperformed laboratory tests as missing rather than negative, or measure those tests in a prospective sample of ED patients; if the chosen rules change substantially or the cross-validated AUC drops, then the reported accuracy was an artifact of the negative-coding assumption rather than of the rules' clinical signal.","tokens_in":15962,"feed_emoji":"🏥","tokens_out":7569,"duration_ms":65902,"temperature":0.7,"pith_summary":"This paper argues that unplanned ICU transfers from the emergency department can be predicted by a small set of interpretable association rules chosen by a mixed-integer optimization program, called ARSOM. The rules are mined separately for four subgroups—infections, gastrointestinal disease, cardiovascular/respiratory disease, and neurological/other disease—so each subgroup gets its own symptom-to-outcome patterns rather than a one-size-fits-all regression. On 1,049 patients from a suburban teaching hospital, the rule sets achieve ten-times five-fold cross-validation AUCs of 0.62–0.76, with most subgroups above 0.7, comparable to logistic regression and LASSO and better than decision trees. If the claim holds, ED clinicians could use these short, confidence-weighted rules to flag patients at risk of deterioration within 48 hours and plan earlier ICU transfer.","feed_headline":"Optimization-picked rules flag ICU-bound patients at AUC > 0.7","feed_subtitle":"Subgroup-specific symptom rules match logistic regression while staying short enough for an ED clinician to read.","key_machinery":"The central object is ARSOM, a two-phase mixed-integer optimization procedure for selecting association rules. Phase 1 uses the Apriori algorithm to enumerate candidate rules that meet minimum support, minimum confidence, and maximum length thresholds; Phase 2 solves a reduced 0-1 integer program that selects rules maximizing coverage of unplanned-transfer patients and minimizing coverage of controls, while keeping feature and rule counts small. The binary coverage matrix linking patients to rules is what makes a patient 'covered,' and each rule's confidence acts as a probability estimate: a patient is classified by the average confidence of the covering rules.","core_discovery":"ARSOM treats the prediction task as a supervised association-rule selection problem. Candidate rules are generated by the Apriori algorithm under minimum support $\\theta_s = 0.01$, minimum confidence $\\theta_c = 0.6$ or $0.7$, and maximum rule length $\\theta_l = 4$; a reduced mixed-integer program then picks rules that cover as many unplanned-transfer patients as possible while covering as few non-transfer patients as possible, with penalties on the number of features and rules. The resulting decision model is a list of rules such as {Renal dysfunction} and {Liver cirrhosis history, SIRS}, each with reported confidence and lift for its subgroup. New patients are scored by the average confidence of the rules that cover them, and the ROC threshold is varied to produce AUC. The paper reports AUC of 0.76 for infections, 0.75 for gastrointestinal disease, 0.73 for neurological/other disease, and 0.62 for cardiovascular/respiratory disease, concluding the method is non-inferior to logistic regression and LASSO while offering interpretable subgroup-specific rules.","pith_inferences":["My inference: the expert-assigned subgroup split is doing much of the work; a natural extension is to let the optimization discover subgroups automatically, for example via clustering or a decision hierarchy, rather than using the four predefined reasons for ED visit.","My inference: since unperformed tests were coded negative, patients with more tests ordered are more likely to have rule features present; the method may implicitly learn 'test-ordering intensity' rather than pure physiology, so a useful check is to compare rule sets after restricting to features that are routinely measured.","My inference: the average-confidence scoring scheme means ARSOM could be used as a continuous risk score, not just a rule-based classifier; comparing it head-to-head with early-warning scores such as MEWS on the same cohort would show whether the rule score adds information beyond existing triage tools."],"forward_implications":["Each subgroup gets a short list of rules (at most four features per rule) with confidence and lift, so a clinician can see which symptom combinations drive risk for that subgroup.","Cross-validated AUC is 0.76 for infections, 0.75 for gastrointestinal disease, 0.73 for neurological/other disease, and 0.73 for all patients combined—comparable to logistic regression and LASSO and better than decision trees in all four subgroups.","Because rules are confidence-weighted, a rule with confidence 0.75 gives a direct probability statement for a matching patient, which is easier to act on than a regression coefficient.","The method's output can be re-trained on new data, so the decision tool could be updated as more clinical records accumulate.","If applied prospectively, the rule sets could support earlier ICU transfer planning within the 48-hour window the study targets."],"supporting_citations":[{"why":"Supplies the definitions of support, confidence, and lift used to judge rule strength.","marker":"[15]"},{"why":"Gives the Apriori algorithm that Phase 1 uses to enumerate candidate strong rules.","marker":"[16]"},{"why":"Provides the R package implementation ('arules') that actually generates the rule candidates.","marker":"[18]"},{"why":"Supplies the APACHE-derived definitions of chronic organ insufficiency features.","marker":"[11]"},{"why":"Supplies the Charlson comorbidity items used as comorbid-condition features.","marker":"[19]"},{"why":"Supplies the severe sepsis and SIRS definitions that set organ-dysfunction and physiological-response features.","marker":"[21]"},{"why":"Baseline logistic-regression classifier whose AUC is compared with ARSOM.","marker":"[25]"},{"why":"Baseline LASSO classifier whose AUC is compared with ARSOM.","marker":"[26]"},{"why":"Baseline decision-tree classifier whose AUC is compared with ARSOM.","marker":"[28]"}],"fun_headline_variants":["Optimized rule lists match logistic regression for ICU transfer prediction","Subgroup-specific rules predict ED-to-ICU transfer with AUC up to 0.76","Optimization finds interpretable rules for ED-to-ICU transfer risk","Rule-based ICU transfer model matches ML methods","Mixed-integer optimization learns subgroup rules for ICU transfer"],"cache_read_input_tokens":3200,"weakest_assumption_plain":"The whole analysis rests on the retrospective binary feature matrix, and the load-bearing premise is that unperformed laboratory tests were coded as negative findings and that the study team's assignment of patients into four subgroups is correct; if missing tests were actually abnormal or subgroup labels misclassify patients, the learned rules and reported AUCs would not reflect true clinical risk.","fun_headline_variants_meta":{"raw":{"variants":["Optimized rule lists match logistic regression for ICU transfer prediction","Subgroup-specific rules predict ED-to-ICU transfer with AUC up to 0.76","Optimization finds interpretable rules for ED-to-ICU transfer risk","Rule-based ICU transfer model matches ML methods","Mixed-integer optimization learns subgroup rules for ICU transfer"]},"model":"deepseek-v4-flash","effort":"low","cost_usd":0.001424,"raw_usage":{"total_tokens":5766,"prompt_tokens":987,"completion_tokens":4779,"prompt_tokens_details":{"cached_tokens":384},"prompt_cache_hit_tokens":384,"prompt_cache_miss_tokens":603,"completion_tokens_details":{"reasoning_tokens":4693}},"tokens_in":603,"tokens_out":4779,"duration_ms":29517,"temperature":1.0,"reasoning_tokens":4693,"cache_read_input_tokens":384,"cache_creation_input_tokens":0},"cache_creation_input_tokens":0},"created_at":"2026-08-14T15:26:13.161004+00:00","model_set":{"reader":"deepseek-v4-flash"},"falsifier":"Concrete check: re-run ARSOM on the same cohort after re-coding unperformed laboratory tests as missing rather than negative, or measure those tests in a prospective sample of ED patients; if the chosen rules change substantially or the cross-validated AUC drops, then the reported accuracy was an artifact of the negative-coding assumption rather than of the rules' clinical signal.","supporting_citations":[{"cited_title":null,"cited_arxiv_id":null,"evidence_quote":"Supplies the definitions of support, confidence, and lift used to judge rule strength."},{"cited_title":"Agrawal, et al., Fast algorithms for mining association rules, in: Proceedings of the 20th international conference on very large data bases, Vol","cited_arxiv_id":null,"evidence_quote":"Gives the Apriori algorithm that Phase 1 uses to enumerate candidate strong rules."},{"cited_title":"Hahsler, S","cited_arxiv_id":null,"evidence_quote":"Provides the R package implementation ('arules') that actually generates the rule candidates."},{"cited_title":null,"cited_arxiv_id":null,"evidence_quote":"Supplies the APACHE-derived definitions of chronic organ insufficiency features."},{"cited_title":"E.Charlson, P","cited_arxiv_id":null,"evidence_quote":"Supplies the Charlson comorbidity items used as comorbid-condition features."},{"cited_title":null,"cited_arxiv_id":null,"evidence_quote":"Supplies the severe sepsis and SIRS definitions that set organ-dysfunction and physiological-response features."},{"cited_title":null,"cited_arxiv_id":null,"evidence_quote":"Baseline logistic-regression classifier whose AUC is compared with ARSOM."},{"cited_title":"Tibshirani, Regression shrinkage and selection via the lasso, Journal of the Royal Statistical Society","cited_arxiv_id":null,"evidence_quote":"Baseline LASSO classifier whose AUC is compared with ARSOM."},{"cited_title":null,"cited_arxiv_id":null,"evidence_quote":"Baseline decision-tree classifier whose AUC is compared with ARSOM."}],"review_version":1}