|
| 1 | +import { Authors, Badges } from '@/components/utils' |
| 2 | + |
| 3 | +# LitBench: A Graph-Centric Large Language Model Benchmarking Tool For Literature Tasks |
| 4 | + |
| 5 | +<Authors |
| 6 | + authors="Andreas Varvarigos, Yale University; Ali Maatouk, Yale University; Jiasheng Zhang, Yale University; Ngoc Bui, Yale University; Jialin Chen, Yale University; Leandros Tassiulas, Yale University; Rex Ying, Yale University" |
| 7 | +/> |
| 8 | + |
| 9 | +<Badges |
| 10 | + venue="SIGKDD 2026" |
| 11 | + github="https://github.com/varvarigos/LitBench" |
| 12 | + arxiv="https://cdn.jsdelivr.net/npm/simple-icons@v9/icons/arxiv.svg" |
| 13 | + pdf="https://cdn.jsdelivr.net/npm/simple-icons@v9/icons/arxiv.svg" |
| 14 | +/> |
| 15 | + |
| 16 | + |
| 17 | +## 1. Introduction |
| 18 | + |
| 19 | +Large Language Models (LLMs) have become the de facto framework for literature-related tasks such as summarization, citation recommendation, and question answering. However, general-purpose LLMs struggle to act as **domain-specific literature agents**, as they fail to reason over structured relationships between papers, concepts, and citations. |
| 20 | + |
| 21 | +Existing benchmarks either lack rich textual structure (e.g., citation sentences, related work, introductions) or ignore the **graph structure** that naturally connects scientific knowledge. |
| 22 | + |
| 23 | +**LitBench** introduces a **graph-centric benchmarking framework** that enables automated curation of domain-specific literature subgraphs and rigorous evaluation across a comprehensive suite of literature tasks. |
| 24 | + |
| 25 | +--- |
| 26 | + |
| 27 | +## 2. Overall Pipeline |
| 28 | + |
| 29 | +LitBench follows an end-to-end, automated pipeline for constructing domain-specific literature benchmarks and training specialized LLMs. |
| 30 | + |
| 31 | +The framework begins with **arXiv-sourced metadata**, from which we crawl the corresponding LaTeX sources and extract structured textual content using a **custom LaTeX parser**. This step recovers rich section-level information, including titles, abstracts, introductions, related work sections, and aligned citation sentences. |
| 32 | + |
| 33 | +Each paper is then annotated with a **hierarchical set of natural-language topics** at multiple levels of abstraction using a large language model. These topic annotations are embedded and stored in a database. |
| 34 | + |
| 35 | +Given a **user-specified domain query** (e.g., *Quantum Physics*), a topic-based retriever matches the query against the topic embeddings to identify the most relevant papers. The retrieved papers are used to construct a **domain-specific citation sub-network**, where nodes represent papers with rich textual attributes and edges represent citations with associated citation sentences. |
| 36 | + |
| 37 | +Finally, the resulting citation graph is transformed into **instruction-tuning and benchmarking datasets**, covering both node-level and edge-level literature tasks. These datasets enable LLMs to be **trained and evaluated** as domain-specific literature agents across a comprehensive suite of literature-related tasks. |
| 38 | + |
| 39 | + |
| 40 | + |
| 41 | + |
| 42 | +--- |
| 43 | + |
| 44 | +## 3. Method Overview |
| 45 | + |
| 46 | +LitBench treats **literature understanding as a graph learning problem**. |
| 47 | + |
| 48 | +The framework consists of four key stages: |
| 49 | + |
| 50 | +- **Concept Curation:** Each paper is annotated with nine natural-language concepts spanning three abstraction levels. |
| 51 | +- **Concept-Based Retrieval:** User queries are matched against concept embeddings rather than titles or abstracts. |
| 52 | +- **Graph Construction:** Nodes contain rich textual attributes, while edges contain aligned citation sentences. |
| 53 | +- **Multi-Instruction Internalization:** The graph is converted into instruction-tuning and benchmarking datasets. |
| 54 | + |
| 55 | +--- |
| 56 | + |
| 57 | +## 4. LitBench Interface |
| 58 | + |
| 59 | +LitBench provides an interactive GUI that allows users to: |
| 60 | + |
| 61 | +- specify arbitrary research domains, |
| 62 | +- automatically construct domain-specific citation graphs, |
| 63 | +- train domain-specific LLMs, |
| 64 | +- evaluate models across multiple literature tasks. |
| 65 | + |
| 66 | + |
| 67 | + |
| 68 | +--- |
| 69 | + |
| 70 | +## 5. Experiments |
| 71 | + |
| 72 | +We evaluate LitBench across three domains: |
| 73 | + |
| 74 | +- Quantitative Biology |
| 75 | +- Robotics |
| 76 | +- Quantum Physics |
| 77 | + |
| 78 | +and across models ranging from **1B to 8B parameters**, including comparisons with **GPT-4o** and **DeepSeek-R1**. |
| 79 | + |
| 80 | +### 5.1: Generative Tasks |
| 81 | + |
| 82 | + |
| 83 | + |
| 84 | +### 5.2: Predictive Tasks |
| 85 | + |
| 86 | + |
| 87 | + |
| 88 | +--- |
| 89 | + |
| 90 | +## 6. Conclusion |
| 91 | + |
| 92 | +- Domain-specific LLMs fine-tuned on LitBench outperform larger general-purpose models on most literature tasks. |
| 93 | +- Performance gains are strongest for **graph-intensive tasks** such as citation prediction and related work generation. |
| 94 | +- Only a small subgraph (~1k papers) is sufficient to internalize domain-specific knowledge. |
| 95 | +- Strong performance is achieved **without continual pretraining**. |
0 commit comments