Graph-Constrained Policy Learning for Extreme Clinical Code Prediction
The paper introduces Graph-Constrained Policy Learning, reformulating ICD-10-CM code prediction as a finite-horizon decision process over a pruned hierarchical graph rather than flat multi-label classification. The proposed SFT-1+ model achieves superior performance on MIMIC-IV discharge summaries, improving micro-F1 by 0.044 and macro-F1 by 0.157 over the strongest flat baselines like CAML and LAAT. A single shared policy effectively matches the accuracy of a three-specialist cascade system whi
Analysis
TL;DR
- The paper introduces Graph-Constrained Policy Learning, reformulating ICD-10-CM code prediction as a finite-horizon decision process over a pruned hierarchical graph rather than flat multi-label classification.
- The proposed SFT-1+ model achieves superior performance on MIMIC-IV discharge summaries, improving micro-F1 by 0.044 and macro-F1 by 0.157 over the strongest flat baselines like CAML and LAAT.
- A single shared policy effectively matches the accuracy of a three-specialist cascade system while avoiding context-window overflow issues in 28-32% of test cases.
- Empirical analysis reveals that increasing supervised trajectory data is the primary driver of performance gains, whereas GRPO reinforcement learning offers no advantage over supervised fine-tuning with matched data.
Why It Matters
This approach addresses the critical bottleneck of rare code prediction in extreme multi-label classification tasks common in healthcare NLP. By leveraging the inherent structure of medical coding hierarchies, it provides a more robust and scalable alternative to independent scoring methods, which often fail to capture dependencies between related diagnoses.
Technical Details
- Methodology: The system uses a single language model to traverse a pruned ICD-10-CM hierarchy level-by-level, selecting valid child nodes until billable leaf codes are reached, ensuring structurally valid outputs.
- Benchmarking: Evaluated on MIMIC-IV discharge summaries against flat baselines (CAML, LAAT, PLM-ICD) across a curated 50-code subset and the full 15,761-code space.
- Performance Metrics: The best supervised policy (SFT-1+) achieved 0.709 micro-F1 on the subset and 0.527 micro-F1 on the full space, demonstrating significant improvements in macro-F1 for rare labels.
- Ablation Study: A factorial study compared architectures and training algorithms, confirming that supervised data volume is the key factor for improvement, while RL methods like GRPO did not enhance results beyond supervised continuation.
Industry Insight
Healthcare AI developers should prioritize hierarchical constraint integration over flat classification heads when dealing with large, sparse label spaces to improve rare event detection. Investing in high-quality supervised trajectory data yields higher returns than complex reinforcement learning strategies for this specific task. This method offers a computationally efficient alternative to cascaded models, reducing infrastructure costs associated with context-window management.
Disclaimer: The above content is generated by AI and is for reference only.