メインコンテンツまでスキップ
バージョン: User Guides (Cloud)

Decompounder

decompounder フィルターは、指定された辞書に基づいて複合語を個別の構成要素に分割し、複合語の一部を検索しやすくします。このフィルターは、ドイツ語のように複合語を頻繁に使用する言語で特に役立ちます。

設定

decompounder フィルターは、構成要素の辞書を word_list パラメーターを通じてインラインで受け取るか、word_list_file パラメーターを通じて登録済みファイルリソースから受け取ります。

Inline word list

decompounder フィルターは Zilliz Cloud のカスタムフィルターです。使用するには、フィルター設定で "type": "decompounder" を指定し、認識する単語の構成要素の辞書を提供する word_list パラメーターを設定します。

analyzer_params = {
"tokenizer": "standard",
"filter":[{
"type": "decompounder", # Specifies the filter type as decompounder
"word_list": ["dampf", "schiff", "fahrt", "brot", "backen", "automat"],
}],
}

decompounder フィルターは、以下の設定可能なパラメーターを受け付けます。

パラメーター

説明

word_list

複合語を分割するために使用される単語構成要素のリストです。この辞書により、複合語が個別の用語に分解される方法が決定されます。

decompounder フィルターはトークナイザーによって生成された用語に対して動作するため、トークナイザーと組み合わせて使用する必要があります。Zilliz Cloud で利用可能なトークナイザーの一覧については、トークナイザーリファレンス を参照してください。

analyzer_params を定義した後、コレクションスキーマを定義する際に VARCHAR フィールドにこれらを適用できます。これにより、Zilliz Cloud は指定されたアナライザーを使用してそのフィールド内のテキストを処理し、効率的なトークン化とフィルタリングを実行できます。詳細については、使用例 を参照してください。

ファイルリソースから単語構成要素を読み込む

大規模な構成要素辞書(特に完全な言語の単語リストなど)の場合、構成要素をファイルに保存し、そのファイルをリモートファイルリソースとして登録してから、word_list_file パラメーターを通じてフィルターから参照します。word_list_file を単独で使用することも、インラインの word_list と併用することも可能です。両方が設定されている場合、フィルターはこれら 2 つのソースを単一の構成要素リストにマージします。

ファイルは UTF‑8 のプレーンテキストであり、1 行に 1 つの構成要素単語を含みます。例:

dampf
schiff
fahrt
brot
backen
automat

ファイルを Milvus クラスターが使用するように構成されているオブジェクトストアにアップロードし、その後登録します。

from pymilvus import MilvusClient

client = MilvusClient(uri="YOUR_CLUSTER_ENDPOINT")

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

word_list_file を使用して、フィルター内で登録済みリソースを参照します。

analyzer_params = {
"tokenizer": "standard",
"filter": [{
"type": "decompounder",
"word_list_file": {
"type": "remote",
"resource_name": "de_components",
"file_name": "decompounder.txt",
},
}],
}

word_list_file パラメータは、以下のフィールドを持つオブジェクトを受け付けます:

Field

Description

type

The resource type. Use "remote" for a file registered via add_file_resource.

resource_name

The name used when the file was registered with add_file_resource.

file_name

The filename portion of the registered resource's object-store path (for example, "decompounder.txt" if the resource was registered with path="file/decompounder.txt").

Examples

アナライザー設定をコレクションスキーマに適用する前に、run_analyzer メソッドを使用してその動作を確認してください。

Analyzer configuration

analyzer_params = {
"tokenizer": "standard",
"filter":[{
"type": "decompounder", # Specifies the filter type as decompounder
"word_list": ["dampf", "schiff", "fahrt", "brot", "backen", "automat"],
}],
}

run_analyzer を使用した検証

from pymilvus import (
MilvusClient,
)

client = MilvusClient(uri="YOUR_CLUSTER_ENDPOINT")

# Sample text to analyze
sample_text = "dampfschifffahrt brotbackautomat"

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

期待される出力

['dampf', 'schiff', 'fahrt', 'brotbackautomat']