← Back to Paper List

Enabling Explainable Recommendation in E-commerce with LLM-powered Product Knowledge Graph

Menghan Wang, Yuchen Guo, Duanfeng Zhang, Jian Jin, Minnie Li, Dan Schonfeld, Shawn Zhou
eBay Inc.
arXiv.org (2024)
Recommendation KG Factuality

📝 Paper Summary

E-commerce Recommendation Knowledge Graph Construction
LLM-PKG distills world knowledge from Large Language Models into a static product knowledge graph to provide explainable, real-time e-commerce recommendations without the latency of live LLM inference.
Core Problem
Deploying LLMs directly for real-time e-commerce recommendation is infeasible due to high latency, while traditional methods struggle to capture implicit user intent (like 'carnations for Mother's Day') from behavioral data alone.
Why it matters:
  • Modern e-commerce systems require extremely low latency (milliseconds), making real-time LLM calls unacceptable for high-traffic scenarios.
  • Traditional collaborative filtering misses the 'why' behind purchases, failing to leverage common sense or world knowledge (e.g., gift-giving occasions) that LLMs possess.
  • Building product knowledge graphs manually is expensive and labor-intensive, while mining them from user logs often fails to capture explicit intent.
Concrete Example: A user buys carnations. Traditional systems might recommend other flowers based on co-occurrence but miss the intent. An LLM knows carnations are for Mother's Day, but calling it live is too slow. LLM-PKG pre-computes this 'carnation -> Mother's Day' link offline.
Key Novelty
Offline Distillation & Semantic Mapping
  • Use LLMs offline to hallucinate a 'fantasy' knowledge graph of products and rationales, then rigorously prune it using the LLM itself as a critic.
  • Map the nodes of this synthetic graph to real enterprise inventory using vector search (BERT embeddings), effectively grounding LLM world knowledge into actual sellable items for low-latency lookup.
Architecture
Architecture Figure Figure 1
The end-to-end framework of LLM-PKG, split into Offline Construction and Online Serving phases.
Evaluation Highlights
  • Significant increase in Item-Detail-Page (View Item) views in online A/B testing on a major e-commerce platform (eBay).
  • Significant increase in qualified transactions/purchases in the same online A/B test.
  • Successfully deployed in a high-traffic production environment by caching the graph as key-value pairs, bypassing the latency of graph database queries.
Breakthrough Assessment
7/10
A practical, engineering-focused solution to the 'LLM latency vs. utility' trade-off in production systems. While the methodology (distillation) is not theoretically novel, the specific pipeline for grounding hallucinated graphs to enterprise inventory is highly effective for industry application.
×