Command Palette
Search for a command to run...
SciAtlas: 자동화된 과학 연구를 위한 대규모 지식 그래프
SciAtlas: 자동화된 과학 연구를 위한 대규모 지식 그래프
초록
글로벌 학술 산출물의 지수함수적 성장은 연구자와 AI 에이전트들에게 전례 없는 ‘정보 폭발’을 안겨주었으며, 이는 단편적이고 비정형화된 지식 조직이 심층적인 학제간 통합을 방해하는 상황을 초래했다. 현재의 학술 검색 도구는 주로 피상적인 키워드 매칭이나 벡터 공간 기반의 의미론적 검색에 의존하고 있어, 복잡한 논리적 연결을 탐색하는 데 필요한 위상적 추론 능력을 결여하고 있다. 에이전트 기반의 심층 연구 프레임워크는 종종 논리적 환각에 취약하며 추론 비용이 과도하게 소모되는 문제가 있다. 이러한 격차를 해소하기 위해, 본 보고서에서는 광범위한 과학적 진화 네트워크로서 설계된 대규모, 다학제적, 이종 학술 자원 지식 그래프인 SciAtlas를 소개한다. 26개 학문 분야의 4,300만 편의 논문과 총 1억 5,700만 개의 엔티티, 30억 개의 트리플을 통합함으로써, SciAtlas는 학제 간 장벽을 해체하고 AI 에이전트들에게 전역적 관점을 제공하는 구조화된 위상적 인지 기반을 마련한다. 또한, 우리는 삼중 경로 협력 검색과 그래프 재순위화를 특징으로 하는 신경기호주의(neuro-symbolic) 검색 알고리즘을 개발하여, 단순한 의미론적 매칭에서 결정론적 연관성 발견으로의 원활한 전환을 실현했다. 우리는 SciAtlas가 자동화된 과학 연구의 전 주기를 지원하면서 추론 비용을 크게 절감할 수 있는 효과적인 ‘인지 지도’ 역할을 할 수 있음을 보여주기 위해, 문헌 검토, 자동화된 연구 동향 합성, 아이디어 위치 지정, 학술적 궤적 탐색 등 SciAtlas의 주요 응용 방향들을 제시한다. 우리는 KG 검색 및 다양한 하위 작업을 위한 인터페이스를 GitHub 저장소에서 공개하였다.
One-sentence Summary
The authors introduce SciATLAS, a large-scale heterogeneous knowledge graph that integrates 43 million papers across 26 disciplines into 157 million entities and 3 billion triplets, employing a neuro-symbolic retrieval algorithm with tri-path collaborative recall and graph reranking to enable deterministic association discovery, significantly reduce reasoning costs, and serve as a cognitive map for automated scientific research.
Key Contributions
- SciATLAS, a large-scale heterogeneous academic knowledge graph, integrates 43 million papers across 26 disciplines into a topological network comprising 157 million entities and 3 billion triplets. This structured substrate dismantles disciplinary barriers and equips AI agents with a deterministic cognitive foundation for interdisciplinary research.
- A neuro-symbolic retrieval algorithm utilizing tri-path collaborative recall and graph reranking transitions literature search from semantic matching to deterministic association discovery. This method anchors large language models with explicit graph traversal to mitigate logical hallucinations and lower the inference costs of deep-research agents.
- The framework enables key automated research workflows, including literature review, trend synthesis, idea positioning, and academic trajectory exploration. Publicly released interfaces for knowledge graph retrieval and downstream tasks confirm its utility as a scalable cognitive map for end-to-end research automation.
Introduction
The exponential growth of global academic output has created an information explosion that impedes deep interdisciplinary integration and challenges the efficiency of automated scientific research workflows. Current retrieval mechanisms struggle to support this domain because they rely on flattened keyword matching or vector-space semantic search, which lack the topological reasoning necessary to navigate complex logical connections. Furthermore, agentic deep-research frameworks often incur prohibitive inference costs and suffer from logical hallucinations due to missing deterministic cognitive maps. The authors present SciATLAS, a massive heterogeneous knowledge graph integrating over 43 million papers across 26 disciplines to provide a structured topological substrate for scientific discovery. They leverage a neuro-symbolic retrieval algorithm featuring tri-path collaborative recall and graph reranking to enable deterministic association discovery without iterative LLM calls. This approach allows AI agents to access a global cognitive perspective for tasks like idea positioning and trend synthesis while significantly reducing reasoning overhead.
Dataset
-
Source and Composition: The authors construct SciATLAS using OpenAlex as the foundational data source, which originally catalogs over 480 million academic publications. The knowledge graph centers on Papers and integrates interconnected entities including Authors, Institutions, Keywords, and a four-tier disciplinary hierarchy (Domains, Fields, Subfields, and Topics).
-
Scale and Filtering Rules: The finalized dataset contains 43.30 million papers, 109.70 million authors, 3.76 million keywords, and 0.12 million institutions. The filtering pipeline strictly retains English publications with sufficiently long abstracts and valid PDF URLs. It normalizes and deduplicates paper titles and institution names while intentionally preserving author duplicates to handle naming ambiguity. Records lacking critical attributes are removed.
-
Metadata Construction and Processing: To replace OpenAlex's sparse macroscopic concepts, the authors employ a lightweight LLM to extract three to eight reusable core keywords per paper from abstracts. Each keyword receives an importance score, and co-occurrence edges are weighted by frequency to capture conceptual links. The pipeline also generates semantic vectors using bge-large-en-v1.5 for titles, abstracts, and keywords, storing them directly as node attributes to enable hybrid retrieval.
-
Usage and Integration: The processed graph is deployed in Neo4j and organized across four relational levels: semantic (citations and relevance), conceptual (keyword co-occurrence), directional (disciplinary hierarchy), and social (authorship and institutional affiliations). Rather than relying on traditional training splits or mixture ratios, the authors leverage the knowledge graph for topological search and reasoning. They feed chronologically ordered paper sequences and author publication lists into structured LLM prompts to generate JSON outputs for research trend prediction and academic profiling.
Method
The retrieval system is designed to support a wide range of query types, including keywords, scientific questions, abstracts, idea texts, and complete papers, by mapping them into the knowledge graph (KG) through multiple distinct pathways. The framework begins with node matching, where queries are processed to identify candidate entities. For keyword-based queries, an LLM extracts a list of keywords along with their importance scores, forming a set K={(ki,sillm)}i=1m. These keywords undergo exact text matching and vector-based semantic matching against the KG. For exact matches, the score is directly assigned as sillm, while for vector matches, the score is computed as sillm⋅sim(ki,g), retaining nodes only if the similarity exceeds a threshold θkw. The final weight for each keyword node g is the maximum of all its matching scores, resulting in the set Kseed={(g,wgkw)}.
For semantic matching, the query q is embedded into a vector eq, and the top-60 papers are retrieved based on title and abstract embeddings. A reranker re-ranks these candidates, retaining the top-15 from each source. The final score for each paper p is a weighted combination of its title and abstract retrieval scores, normalized to handle missing values. Title matching is specifically applied when the query contains paper titles. GROBID extracts titles, and an LLM assigns confidence scores to each. These titles are normalized and matched against the KG using exact or fuzzy similarity, with a threshold θtitle for filtering. The matching score for a paper p is cj⋅m(tj,p), where m(tj,p) combines LCS and token overlap. Multiple title matches are resolved by taking the maximum score.
The results from the semantic and title matching pathways are merged into a unified set of candidate paper nodes, Pseed. To unify the scores, a dot product between the query embedding and the paper's title and abstract embeddings is computed, followed by MinMax normalization. The final pre-graph weight for each paper p is defined as sppre=λembspemb+λtitlesptitle+bppre, where bppre is a title bonus based on exact or fuzzy title hits. This process establishes the initial seed nodes for the retrieval.
The system then performs a 2-hop subgraph propagation from the seed nodes, treating all edges as undirected. To manage scalability, at most 500 nodes per entity type are selected at each hop. Paper importance is computed based on citation count using a logarithmic scaling to prevent dominance by highly cited papers. The unnormalized weight for each seed paper p is wpseed=sppre⋅(1+γ⋅imp(p)), where γ controls the influence of importance. For seed keywords, the weight is wqseed=wqkw. The initial distribution s over nodes is defined as sv=wvseed/Z for nodes in the seed set S=Pseed∪Kseed, with Z as the normalization constant. Edge weights are assigned based on type, as defined in the table.
To explore topological relationships, a random walk with restart is performed on the graph. The transition probability from node u to neighbor v is ω(u,v)/∑x∈N(u)ω(u,x). The score vector r(t) is initialized as s and updated iteratively as rv(t+1)=αsv+(1−α)∑uru(t)P(v∣u), where α is the restart probability. The process terminates when the L1 norm of the difference between consecutive iterations falls below 10−6 or after 50 iterations. The final node score rv is the result of this diffusion.
Finally, the system computes a comprehensive final score for each paper p as spfinal=min(1,λpres~ppre+λgraphs~pgraphgp+λimpimpfinal(p)). The pre-graph score s~ppre is MinMax-normalized, and the graph score s~pgraph is similarly normalized. The graph support factor gp=max(0.25,s~ppre) acts as a gate, ensuring that graph-discovered papers must have sufficient initial relevance to achieve high ranks. The final score combines initial relevance, topological support, and citation importance, and the top-20 papers are returned with detailed explanations.