Overview
The approach is practical and lightweight: use CoT to expand entities, enumerate multi-hop pairs in a KG, rank paths with PageRank, and prune neighbors with one LLM call. Evidence is moderate: experiments on three datasets show gains, but evaluation uses GPT-4 ranking and limited sample sizes.
Citations3
Evidence Strength0.70
Confidence0.78
Risk Signals9
Trust Signals
Findings with numeric evidence: 5/5
Findings with evidence refs: 5/5
Results with explicit delta: 5/5
Reproducibility
Status: Partial assets available
Open source: Partial
At A Glance
Cost impact: 60%
Production readiness: 60%
Novelty: 45%
Why It Matters For Business
RoK gives domain QA systems more accurate, interpretable answers while cutting LLM calls and API cost by structuring knowledge as ranked KG paths.
Who Should Care
Summary TLDR
RoK (Reasoning on Efficient Knowledge Paths) builds short reasoning paths from a knowledge graph and uses chain-of-thought (CoT) to expand question entities. It ranks candidate multi-hop paths with PageRank and supplies the top paths as structured background to an LLM. On three QA sets (medical and WebQuestions subsets), RoK improves entity-match and semantic scores versus vanilla LLMs and prior KG-based prompts while requiring only about three LLM calls per question.
Problem Statement
LLMs hallucinate and struggle on domain-specific multi-hop questions because they lack structured domain context and fine-tuning is costly or unavailable. Prior KG+LLM methods call LLM many times during path selection, which is slow and error-prone when an early path choice is wrong.
Main Contribution
A pipeline (RoK) that expands question entities via LLM chain-of-thought, enumerates multi-hop candidate paths in a knowledge graph, ranks paths with PageRank, and prunes neighbor triples with a single LLM call.
A practical subgraph retrieval method that uses CoT to increase entity linking coverage and PageRank to pick top-N reasoning paths as structured prompts.
Key Findings
RoK improves key-entity match accuracy on GenMedGPT-5k to 81.3% from GPT-3.5's 52.6%.
RoK increases answer semantic similarity (BERTScore F1) on GenMedGPT-5k to 0.815 vs GPT-3.5 0.791 and prior MindMap 0.802.
Results
| Metric | Value | Baseline | Delta | Split / Dataset | Evidence | Evidence Ref |
|---|---|---|---|---|---|---|
| BERTScore F1 (GenMedGPT-5k) | 0.815 (RoK) | 0.791 (GPT-3.5) | +0.024 | GenMedGPT-5k | Table 2 shows BERTScore F1 | Table 2 |
| BERTScore F1 (CMCQA) | 0.934 (RoK) | 0.915 (GPT-3.5) | +0.019 | CMCQA | Table 2 shows BERTScore F1 | Table 2 |
What To Try In 7 Days
Add a CoT step to expand entities from user questions, then do simple entity linking to your domain KG.
Enumerate short multi-hop paths between linked entities, score nodes with PageRank, and surface top paths as structured context to your LLM.
Replace expensive multi-step LLM path selection with a single LLM pass to filter neighbor triples and one final answer call; measure entity hit rate and API calls.
Optimization Features
Token Efficiency
Inference Optimization
Reproducibility
Data URLs
Risks & Boundaries
Limitations
Requires a domain knowledge graph with sufficient coverage; missing entities reduce effectiveness.
PageRank is a heuristic and may prioritize high-degree hub nodes over semantically best paths.
When Not To Use
You lack a curated KG for the domain.
Questions are simple single-hop factual lookups where standard retrieval already suffices.
Failure Modes
Entity linking fails or links to wrong KG nodes, producing wrong paths.
PageRank selects hub-heavy but semantically irrelevant paths.

