paper-with-me

홈 › Papers

Chain-of-Knowledge: Integrating Knowledge Reasoning into Large Language Models by Learning from Knowledge Graphs

2024-06-30 · Yifei Zhang, Xintao Wang, Jiaqing Liang, Sirui Xia, Lida Chen, Yanghua Xiao

Large Language Models (LLMs) have exhibited impressive proficiency in various natural language processing (NLP) tasks, which involve increasingly complex reasoning. Knowledge reasoning, a primary type of reasoning, aims at deriving new knowledge from existing one.While it has been widely studied in the context of knowledge graphs (KGs), knowledge reasoning in LLMs remains underexplored. In this paper, we introduce Chain-of-Knowledge, a comprehensive framework for knowledge reasoning, including methodologies for both dataset construction and model learning. For dataset construction, we create KnowReason via rule mining on KGs. For model learning, we observe rule overfitting induced by naive training. Hence, we enhance CoK with a trial-and-error mechanism that simulates the human process of internal knowledge exploration. We conduct extensive experiments with KnowReason. Our results show the effectiveness of CoK in refining LLMs in not only knowledge reasoning, but also general reasoning benchmarkms.

📄 PDF Abstract BibTeX arXiv:2407.00653

Code (0)

등록된 구현이 없습니다.

Tasks

Knowledge Graphs

Similar Papers 제목 키워드 기반

CoT-RAG: Integrating Chain of Thought and Retrieval-Augmented Generation to Enhance Reasoning in Large Language Models

2025-04-18 · Feiyang Li, Peng Fang, Zhan Shi, Arijit Khan 외

Chain-of-thought (CoT) reasoning boosts large language models' (LLMs) performance on complex tasks but faces two key limitations: a lack of reliability when solely relying on LLM-generated reasoning chains and interferen…

Knowledge GraphsRAGRetrieval-augmented Generation

StepChain GraphRAG: Reasoning Over Knowledge Graphs for Multi-Hop Question Answering

2025-10-03 · Tengjun Ni, Xin Yuan, Shenghong Li, Kai Wu 외 arxiv

Recent progress in retrieval-augmented generation (RAG) has led to more accurate and interpretable multi-hop question answering (QA). Yet, challenges persist in integrating iterative reasoning steps with external knowled…

Multi-hop Question AnsweringKnowledge Graphs

GIVE: Structured Reasoning with Knowledge Graph Inspired Veracity Extrapolation

2024-10-11 · Jiashu He, Mingyu Derek Ma, Jinxuan Fan, Dan Roth 외

Existing retrieval-based reasoning approaches for large language models (LLMs) heavily rely on the density and quality of the non-parametric knowledge source to provide domain knowledge and explicit reasoning chain. Howe…

Knowledge GraphsResponse GenerationRetrieval

A Large Language Model Based Method for Complex Logical Reasoning over Knowledge Graphs

2025-12-22 · Ziyan Zhang, Chao Wang, Zhuo Chen, Lei Chen 외 arxiv

Reasoning over knowledge graphs (KGs) with first-order logic (FOL) queries is challenging due to the inherent incompleteness of real-world KGs and the compositional complexity of logical query structures. Most existing m…

Logical ReasoningKnowledge Graphs

Are Transformers Able to Reason by Connecting Separated Knowledge in Training Data?

2025-01-27 · Yutong Yin, Zhaoran Wang

Humans exhibit remarkable compositional reasoning by integrating knowledge from various sources. For example, if someone learns ( B = f(A) ) from one source and ( C = g(B) ) from another, they can deduce ( C=g(B)=g(f(A))…