摘要
文章首先介绍了语义分块在 RAG 中的位置和作用,并介绍了常见的基于规则的分块方法。
然后,阐述了语义分块的目的是确保每个分块包含尽可能多的独立语义信息。
接着,文章分别介绍了三种语义分块方法的原理和实现方法,并对每种方法进行了总结和评估。
文章观点
- 语义分块是 RAG 中的一种重要技术,将文档分解成更小的块以提取详细的特征。
- 常见的分块方法是基于规则的方法,如固定块大小或相邻块重叠等。
- 语义分块的目的是确保每个分块包含尽可能多的独立语义信息。
- 基于嵌入的方法利用嵌入模型对文本进行语义分块,其中 LlamaIndex 和 Langchain 都提供了语义分块器。
- 基于模型的方法利用模型对文本进行语义分块,包括
Naive BERT
、Cross Segment Attention
和SeqModel
。- 基于 LLM 的方法利用 LLM 构建命题进行语义分块,形成一个小到大的索引结构,提供了一种新的语义分块思路。
解析文档后,我们可以获得结构化或半结构化数据。现在的主要任务是将它们分解成更小的块来提取详细的特征,然后嵌入这些特征来表示它们的语义。其在 RAG 中的位置如图 1 所示。
大多数常用的分块方法都是基于规则的,采用固定分块大小或相邻分块重叠等技术。
对于多级文档,我们可以使用 Langchain 提供的 RecursiveCharacterTextSplitter
。这允许定义多级分隔符。
然而,在实际应用中,由于预定义的规则(块大小或重叠部分的大小)过于死板,基于规则的分块方法很容易导致检索上下文不完整或包含噪声的块大小过大等问题。
因此,对于分块来说,最有效的方法显然是根据语义进行分块。语义分块旨在确保每个分块包含尽可能多的独立语义信息。
本文将探讨语义分块的方法,解释其原理和应用。我们将介绍三种方法:
- 基于嵌入式(Embedding-based)
- 基于模型(Model-based)
- 基于 LLM(LLM-based)
基于嵌入的方法(Embedding-based)
LlamaIndex 和 Langchain 都提供了基于嵌入的语义分块器。算法的思路大致相同,我们将以 LlamaIndex 为例进行说明。
请注意,要访问 LlamaIndex 中的语义分块器,您需要安装最新版本。我安装的前一个版本 0.9.45 并不包含这种算法。因此,我创建了一个新的 conda 环境,并安装了更新版本 0.10.12:
pip install llama-index-core
pip install llama-index-readers-file
pip install llama-index-embeddings-openai
pip install httpx[socks]
值得一提的是,LlamaIndex 0.10.12 可以灵活安装,因此这里只安装了一些关键组件。已安装的版本如下:
(llamaindex_010) Florian:~ Florian$ pip list | grep llama
llama-index-core 0.10.12
llama-index-embeddings-openai 0.1.6
llama-index-readers-file 0.1.5
llamaindex-py-client 0.1.13
测试代码如下
from llama_index.core.node_parser import (
SentenceSplitter,
SemanticSplitterNodeParser,
)
from llama_index.embeddings.openai import OpenAIEmbedding
from llama_index.core import SimpleDirectoryReader
import os
os.environ["OPENAI_API_KEY"] = "YOUR_OPEN_AI_KEY"# load documents
dir_path = "YOUR_DIR_PATH"
documents = SimpleDirectoryReader(dir_path).load_data()
embed_model = OpenAIEmbedding()
splitter = SemanticSplitterNodeParser(
buffer_size=1, breakpoint_percentile_threshold=95, embed_model=embed_model
)
nodes = splitter.get_nodes_from_documents(documents)
for node in nodes:
print('-' * 100)
print(node.get_content())
我跟踪了 de>splitter.get_nodes_from_documents 函数,其主要过程如图 2 所示:
图 2 中提到的 "sentences"是一个 python 列表,其中每个成员都是一个字典,包含四个(键,值)对,键的含义如下:
sentence
: 当前句子- **
index
****:**当前句子的序列号 - **
combined_sentence
****:**一个滑动窗口,包括 [index -self.buffer_size, index, index + self.buffer_size] 3 个句子(默认情况下,self.buffer_size = 1)。它是用于计算句子间语义相关性的工具。合并前后句子的目的是减少噪音,更好地捕捉连续句子之间的关系。 - **
combined_sentence_embedding
****:**合并句子的嵌入内容
从以上分析可以看出,基于嵌入的语义分块主要是根据滑动窗口(合并句子)计算相似度。那些相邻且符合阈值的句子会被归入一个语义块。
目录路径只包含一份 BERT 纸质文件。下面是一些运行结果:
(llamaindex_010) Florian:~ Florian$ python /Users/Florian/Documents/june_pdf_loader/test_semantic_chunk.py
...
...
----------------------------------------------------------------------------------------------------
We argue that current techniques restrict the
power of the pre-trained representations, espe-
cially for the fine-tuning approaches. The ma-
jor limitation is that standard language models are
unidirectional, and this limits the choice of archi-
tectures that can be used during pre-training. For
example, in OpenAI GPT, the authors use a left-to-right architecture, where every token can only at-
tend to previous tokens in the self-attention layers
of the Transformer (Vaswani et al., 2017). Such re-
strictions are sub-optimal for sentence-level tasks,
and could be very harmful when applying fine-
tuning based approaches to token-level tasks such
as question answering, where it is crucial to incor-
porate context from both directions.
In this paper, we improve the fine-tuning based
approaches by proposing BERT: Bidirectional
Encoder Representations from Transformers.
BERT alleviates the previously mentioned unidi-
rectionality constraint by using a “masked lan-
guage model” (MLM) pre-training objective, in-
spired by the Cloze task (Taylor, 1953). The
masked language model randomly masks some of
the tokens from the input, and the objective is to
predict the original vocabulary id of the maskedarXiv: