Back to Feed
Reinforcement Learning / Benchmarks & Evals

Improving Accuracy in Medical Question Answering

Original: ConRub-Med: Reinforcement Learning with Consensus Rubrics for Open-Ended Medical Question Answering

Listen to the summary

Uses a voice available on your device

Audio options
On this page 4 sections
Related concepts 4 concepts

Key Takeaways

  • ConRub-Med uses heterogeneous language models to generate and validate atomic evaluation criteria, reducing reliance on manual physician review.
  • The method uses a Three-State scoring system that explicitly penalizes incorrect claims while rewarding correct coverage and identifying missing information.
  • A pairwise judge improves reward stability in group-based optimization by resolving ties only when candidate orderings align.
  • The model ranked first on six of nine benchmarks and achieved a score of 38.98 ± 1.04 on HealthBench-Hard.

Summary & Methodology Analysis

ConRub-Med addresses the difficulty of evaluating open-ended medical responses by implementing a multi-step automated rubric generation process. The system generates three atomic criteria using heterogeneous language models and filters these criteria through a review model to ensure they receive semantic support from all three generators. This creates a more reliable automated verifier than relying on single-model evaluations, which often struggle with medical nuance and clinical accuracy. The method uses a Three-State scoring approach to classify output into correct coverage, missing information, or incorrect claims, applying negative credit directly to incorrect information to steer the model towards safer responses. For optimization, the framework utilizes GRPO (Group Relative Policy Optimization, a reinforcement learning method that optimizes a policy by comparing multiple generated outputs within a group to compute a relative advantage). When groups share tied rewards, the system adds a pairwise judge to assess sequence advantages only if both candidates agree on the ranking, ensuring more robust training signal in ambiguous scenarios. For groups without ties, the system defaults to standard GRPO. This approach allows the model to achieve state-of-the-art performance, ranking first on six of nine benchmarks including high scores on the HealthBench-Hard dataset. A primary limitation noted is the high cost of involving physicians for rubric validation in every instance, which prevents scaling manual verification to every potential query.

Interactive System Flowchart

Click diagram to expand and zoom

Cross-Examination & FAQs

A deeper dive clarifying mechanics, constraints, and baseline evaluations.

Q1. What is the main problem this paper addresses?

Existing reinforcement learning approaches for medical question answering lack low-cost, automated verifiers and often struggle with nuanced or inaccurate clinical responses.

Q2. How does this method improve medical answer accuracy?

It uses an automated rubric system that evaluates responses based on correct coverage, missing information, and incorrect claims.

Q3. Did this method perform well on standard benchmarks?

Yes, ConRub-Med ranked first on six of nine benchmarks and achieved the highest medical and generalization averages across evaluated open models.

Q4. How are criteria generated for evaluation?

Criteria are generated independently using three heterogeneous language models and then filtered by a separate model to ensure semantic support from all three sources.

Q5. How does the system handle tied rewards in GRPO?

It employs a pairwise judge to provide sequence advantages only if both candidate orders agree.

Q6. What is the Three-State scoring mechanism?

It evaluates response segments for correct coverage, missing information, and incorrect claims, while assigning negative credit to errors.

Q7. What was the score achieved on HealthBench-Hard?

ConRub-Med achieved a score of 38.98 ± 1.04.

Q8. What are the limitations regarding physician involvement?

The paper notes that involving physicians directly for rubric validation in every instance is prohibitively expensive.

Q9. Does this method use vanilla GRPO in all scenarios?

No, vanilla GRPO is only applied to groups that do not have tied rewards.