跳到主要内容
版本:v3.0.x

停止词

stop 过滤器会从标记化文本中移除指定的停止词,帮助剔除常见的、意义不大的词。您可以使用stop_words 参数配置停用词列表。

配置

stop 过滤器可以通过stop_words 参数接受内联的停用词列表,也可以通过stop_words_file 参数从注册的文件资源中接受停用词列表。

内联 stop-words 列表

要在stop 过滤器中使用内联列表,请在过滤器配置中指定"type": "stop" 以及提供停用词列表的stop_words 参数。

analyzer_params = {
"tokenizer": "standard",
"filter":[{
"type": "stop", # Specifies the filter type as stop
"stop_words": ["of", "to", "_english_"], # Defines custom stop words and includes the English stop word list
}],
}

stop 过滤器接受以下可配置参数。

| 参数

|

说明

| | --- | --- | |

stop_words

|

要从标记化中删除的单词列表。默认情况下,过滤器使用内置的_english_ 词典。您可以通过三种方式覆盖或扩展它:

  • 内置词典- 提供这些语言别名之一,以使用预定义词典:

    "_english_","_danish_","_dutch_","_finnish_","_french_","_german_","_hungarian_","_italian_","_norwegian_","_portuguese_","_russian_","_spanish_""_swedish_"

  • 自定义列表- 传递自己的术语数组,如["foo", "bar", "baz"]

  • 混合列表- 结合别名和自定义术语,如["of", "to", "_english_"]

    有关每个预定义词典的具体内容,请参阅stop_words

|

stop 过滤器对标记化器生成的术语进行操作,因此必须与标记化器结合使用。有关 Milvus 中可用的标记符列表,请参阅标准标记符及其同类页面。

定义analyzer_params 后,可以在定义 Collection Schema 时将其应用到VARCHAR 字段。这样,Milvus 就可以使用指定的分析器对该字段中的文本进行处理,从而实现高效的标记化和过滤。有关详情,请参阅示例使用

从文件资源加载停止词 Compatible with Milvus 3.0.x

对于大型自定义止语列表(特定语言列表、域词汇表或希望在多个 Collection 中共享的列表),可将止语存储在文件中,并将该文件注册为远程文件资源,然后通过stop_words_file 参数从过滤器中引用该文件。您可以单独使用stop_words_file ,也可以与内联stop_words 同时使用;当同时设置这两个参数时,过滤器会将这两个来源合并为一个单一的停止词语列表。

文件是纯 UTF-8 文本,每行一个停止词。例如

the
of
for

将文件上传到 Milvus 集群配置使用的对象存储,然后注册:

from pymilvus import MilvusClient

client = MilvusClient(uri="http://localhost:19530")

# Register the uploaded file under a name you'll reference from analyzer configs.
client.add_file_resource(
name="en_stop_words",
path="file/stop_words.txt", # full S3 object key, including the rootPath prefix
)

通过stop_words_file 在过滤器中引用已注册的资源:

analyzer_params = {
"tokenizer": "standard",
"filter": [{
"type": "stop",
"stop_words_file": {
"type": "remote",
"resource_name": "en_stop_words",
"file_name": "stop_words.txt",
},
}],
}

stop_words_file 参数接受包含以下字段的对象:

| 字段

|

字段

| | --- | --- | |

type

|

资源类型。通过add_file_resource 注册的文件使用"remote" 。有关自托管部署中使用的"local" 变体,请参阅管理文件资源

| |

resource_name

|

文件在add_file_resource 注册时使用的名称。

| |

file_name

|

注册资源的对象存储路径中的文件名部分(例如,如果资源是通过path="file/stop_words.txt" 注册的,则为"stop_words.txt" )。

|

示例

在将分析器配置应用到 Collection 模式之前,请使用run_analyzer 方法验证其行为。

分析器配置

analyzer_params = {
"tokenizer": "standard",
"filter":[{
"type": "stop", # Specifies the filter type as stop
"stop_words": ["of", "to", "_english_"], # Defines custom stop words and includes the English stop word list
}],
}

验证使用run_analyzer

from pymilvus import (
MilvusClient,
)

client = MilvusClient(uri="http://localhost:19530")

# Sample text to analyze
sample_text = "The stop filter allows control over common stop words for text processing."

# Run the standard analyzer with the defined configuration
result = client.run_analyzer(sample_text, analyzer_params)
print("Standard analyzer output:", result)

预期输出

['The', 'stop', 'filter', 'allows', 'control', 'over', 'common', 'stop', 'words', 'text', 'processing']