Standard Analyzer
standardアナライザーはZilliz Cloudのデフォルトアナライザーであり、アナライザーが指定されていない場合にテキストフィールドに自動的に適用されます。文法ベースのトークン化を使用しており、ほとんどの言語において効果的です。
定義
standardアナライザーは以下の要素で構成されています:
-
Tokenizer:
standardトークナイザーを使用して、文法規則に基づいてテキストを離散的な単語単位に分割します。詳細については、Standard Tokenizerを参照してください。 -
Filter:
lowercaseフィルターを使用してすべてのトークンを小文字に変換し、大文字小文字を区別しない検索を可能にします。詳細については、Lowercaseを参照してください。
standardアナライザーの機能は、以下のカスタムアナライザー構成と同等です:
- Python
- Java
- NodeJS
- Go
- cURL
analyzer_params = {
"tokenizer": "standard",
"filter": ["lowercase"]
}
Map<String, Object> analyzerParams = new HashMap<>();
analyzerParams.put("tokenizer", "standard");
analyzerParams.put("filter", Collections.singletonList("lowercase"));
const analyzer_params = {
"tokenizer": "standard",
"filter": ["lowercase"]
};
analyzerParams := map[string]any{"tokenizer": "standard", "filter": []any{"lowercase"}}
# restful
analyzerParams='{
"tokenizer": "standard",
"filter": [
"lowercase"
]
}'
構成
フィールドにstandardアナライザーを適用するには、analyzer_paramsでtypeをstandardに設定し、必要に応じてオプションパラメータを含めます。
- Python
- Java
- NodeJS
- Go
- cURL
analyzer_params = {
"type": "standard", # 標準アナライザーの種類を指定
}
Map<String, Object> analyzerParams = new HashMap<>();
analyzerParams.put("type", "standard");
const analyzer_params = {
"type": "standard", # 標準アナライザーの種類を指定
}
analyzerParams = map[string]any{"type": "standard"}
# restful
analyzerParams='{
"type": "standard"
}'
standardアナライザーは以下のオプションパラメータを受け入れます:
パラメータ | 説明 |
|---|---|
| トークン化から削除されるストップワードを含む配列。 |
カスタムストップワードの構成例:
- Python
- Java
- NodeJS
- Go
- cURL
analyzer_params = {
"type": "standard", # 標準アナライザーの種類を指定
"stop_words", ["of"] # オプション:トークン化から除外する単語のリスト
}
Map<String, Object> analyzerParams = new HashMap<>();
analyzerParams.put("type", "standard");
analyzerParams.put("stop_words", Collections.singletonList("of"));
analyzer_params = {
"type": "standard", # 標準アナライザーの種類を指定
"stop_words", ["of"] # オプション:トークン化から除外する単語のリスト
}
analyzerParams = map[string]any{"type": "standard", "stop_words": []string{"of"}}
# restful
analyzer_paramsを定義した後、コレクションスキーマを定義する際にVARCHARフィールドに適用できます。これにより、Zilliz Cloudは、指定されたアナライザーを使用してそのフィールド内のテキストを効率的にトークン化およびフィルタリング処理できます。詳細については、使用例を参照してください。
例
アナライザー構成をコレクションスキーマに適用する前に、run_analyzerメソッドを使用してその動作を検証してください。
アナライザー構成
- Python
- Java
- NodeJS
- Go
- cURL
analyzer_params = {
"type": "standard", # Standard analyzer configuration
"stop_words": ["for"] # オプション:カスタムストップワードパラメータ
}
Map<String, Object> analyzerParams = new HashMap<>();
analyzerParams.put("type", "standard");
analyzerParams.put("stop_words", Collections.singletonList("for"));
// javascript
analyzerParams = map[string]any{"type": "standard", "stop_words": []string{"for"}}
# restful
analyzerParams='{
"type": "standard",
"stop_words": [
"of"
]
}'
run_analyzerを使用した検証
- Python
- Java
- NodeJS
- Go
- cURL
from pymilvus import (
MilvusClient,
)
client = MilvusClient(
uri="YOUR_CLUSTER_ENDPOINT",
token="YOUR_CLUSTER_TOKEN"
)
# 解析するサンプルテキスト
sample_text = "The Milvus vector database is built for scale!"
# 定義された構成でstandardアナライザーを実行
result = client.run_analyzer(sample_text, analyzer_params)
print("Standard analyzer output:", result)
import io.milvus.v2.client.ConnectConfig;
import io.milvus.v2.client.MilvusClientV2;
import io.milvus.v2.service.vector.request.RunAnalyzerReq;
import io.milvus.v2.service.vector.response.RunAnalyzerResp;
ConnectConfig config = ConnectConfig.builder()
.uri("YOUR_CLUSTER_ENDPOINT")
.token("YOUR_CLUSTER_TOKEN")
.build();
MilvusClientV2 client = new MilvusClientV2(config);
List<String> texts = new ArrayList<>();
texts.add("The Milvus vector database is built for scale!");
RunAnalyzerResp resp = client.runAnalyzer(RunAnalyzerReq.builder()
.texts(texts)
.analyzerParams(analyzerParams)
.build());
List<RunAnalyzerResp.AnalyzerResult> results = resp.getResults();
// javascript
import (
"context"
"encoding/json"
"fmt"
"github.com/milvus-io/milvus/client/v2/milvusclient"
)
client, err := milvusclient.New(ctx, &milvusclient.ClientConfig{
Address: "YOUR_CLUSTER_ENDPOINT",
APIKey: "YOUR_CLUSTER_TOKEN",
})
if err != nil {
fmt.Println(err.Error())
// handle error
}
bs, _ := json.Marshal(analyzerParams)
texts := []string{"The Milvus vector database is built for scale!"}
option := milvusclient.NewRunAnalyzerOption(texts).
WithAnalyzerParams(string(bs))
result, err := client.RunAnalyzer(ctx, option)
if err != nil {
fmt.Println(err.Error())
// handle error
}
# restful
期待される出力
Standard analyzer output: ['the', 'milvus', 'vector', 'database', 'is', 'built', 'scale']