Knowledge-Based Trust Paper Explained
The 2015 VLDB paper "Knowledge-Based Trust: Estimating the Trustworthiness of Web Sources" by Dong et al. (arXiv:1502.03519) introduced a method to score web sources on factual accuracy using Google's Knowledge Vault as ground truth — analysing 2.8 billion facts across 119 million web pages.
Background and Motivation
By 2014, web ranking was overwhelmingly dominated by link-based signals. PageRank and its successors assumed that editorial judgement — expressed through hyperlinks — was a reliable proxy for content quality. While this assumption worked well for many query types, it broke down systematically for factual queries where popular sources regularly published incorrect information and still ranked well due to accumulated link equity.
The research team at Google asked a direct question: can we measure the accuracy of web sources directly, without relying on who links to them? If so, can that accuracy signal be computed at the scale of the entire web?
The Technical Approach
The paper introduces a pipeline with four components:
- Information extraction at web scale. Google's DeepDive-based extraction system processed 119 million web pages and extracted approximately 2.8 billion subject–predicate–object triples. For example: (Nelson Mandela, born in, Mvezo).
- Claim verification via the Knowledge Vault. Each extracted triple was cross-referenced against the Knowledge Vault, which contained 1.6 billion facts with probabilistic confidence scores. Triples were labelled supported, contradicted, or uncertain.
- Probabilistic source scoring. A Bayesian graphical model jointly estimated: (a) the probability that each extracted triple was correct, and (b) the trustworthiness score of the source — iterating to convergence. This mutual estimation structure is analogous to the PageRank power iteration.
- Evaluation against human judgements. The resulting KBT scores were compared against manual quality ratings and against link-based baselines. KBT scores correlated more strongly with human quality assessments than link-based signals on factual topics.
Key Findings
The paper's main empirical results:
- KBT scores outperform link signals on factual accuracy. For queries where factual correctness matters, KBT-based source rankings agreed with expert quality judgements more often than PageRank-based rankings.
- The combination of KBT and links outperforms either alone. Hybrid models that weight both accuracy and authority produce the most reliable trustworthiness estimates, suggesting the two signals are complementary rather than redundant.
- High link authority does not imply factual accuracy. Several high-PageRank sources received low KBT scores, confirming that popularity and accuracy are partially independent properties.
- The iterative Bayesian model is necessary. A simple accuracy ratio (correct facts / total facts) underperforms the full probabilistic model, which accounts for the reliability of the Knowledge Vault labels themselves.
Significance and Lasting Impact
The KBT paper marked a conceptual breakthrough: it demonstrated that content quality — not just popularity — could be computed at web scale using automated fact-checking against a knowledge base. The principles directly influenced:
- Google's E-E-A-T quality rater guidelines, particularly the Trustworthiness dimension.
- Patent filings by Google related to factual accuracy as a ranking factor.
- Research into misinformation detection, source credibility assessment, and AI training data curation.
- The design of AI answer engines that weight sources by factual reliability rather than purely by link authority.
The full paper is freely available at arXiv:1502.03519.
Frequently Asked Questions
What is the full citation for the KBT paper?
Xin Luna Dong, Evgeniy Gabrilovich, Kevin Murphy, Van Dang, Wilko Horn, Camillo Lugaresi, Shaohua Sun, Wei Zhang. "Knowledge-Based Trust: Estimating the Trustworthiness of Web Sources." Proceedings of the VLDB Endowment, Vol. 8, 2015. arXiv:1502.03519.
What was the main finding of the KBT paper?
That factual accuracy — computed by cross-checking extracted web triples against the Knowledge Vault — correlates more strongly with source quality than link-based signals alone, and that combining both yields the best trustworthiness estimates.
How many facts did the KBT study analyse?
Approximately 2.8 billion facts extracted from 119 million web pages — one of the largest empirical web quality studies ever published at that time.