Regex
regex フィルターは正規表現フィルターです。トークナイザーが生成したトークンのうち、指定した式に一致するものだけが保持され、それ以外はすべて破棄されます。
このページでは、アナライザーパイプラインにおける regex フィルターについて説明します。このフィルターはトークナイザーが生成したトークンをフィルタリングし、テキスト解析時に生成されるタームに影響を与えます。query、search、またはハイブリッド検索において、field =~ "pattern" や field !~ "pattern" などのスカラー式を使ってエンティティをフィルタリングする方法については、Pattern Matching を参照してください。
設定
regex フィルターは、Zilliz Cloud のカスタムフィルターです。使用するには、フィルター設定で "type": "regex" を指定するとともに、適用したい正規表現を expr パラメーターで指定します。
- Python
- Java
- NodeJS
- Go
- cURL
- C++
analyzer_params = {
"tokenizer": "standard",
"filter": [{
"type": "regex",
"expr": "^(?!test)" # keep tokens that do NOT start with "test"
}]
}
Map<String, Object> analyzerParams = new HashMap<>();
analyzerParams.put("tokenizer", "standard");
analyzerParams.put("filter",
Arrays.asList(new HashMap<String, Object>() {{
put("type", "regex");
put("expr", "^(?!test)");
}})
);
// node
analyzerParams = map[string]any{"tokenizer": "standard",
"filter": []any{map[string]any{
"type": "regex",
"expr": "^(?!test)",
}}}
# curl
nlohmann::json analyzer_params = {
{"tokenizer", "standard"},
{"filter", {
{{"type", "regex"}, {"expr", "^(?!test)"}}
}}
};
regex フィルターでは、以下のパラメーターを設定できます。
| パラメーター | 説明 |
|---|---|
expr | 各トークンに適用される正規表現パターンです。パターンに一致するトークンは保持され、一致しないトークンは破棄されます。 正規表現の構文の詳細については、Syntax を参照してください。 |
regex フィルターはトークナイザーが生成したタームに対して動作するため、トークナイザーと組み合わせて使用する必要があります。
analyzer_params を定義したら、コレクションスキーマの定義時に VARCHAR フィールドへ適用できます。これにより、Zilliz Cloud が指定されたアナライザーを使用して該当フィールドのテキストを処理し、効率的なトークン化とフィルタリングを行えるようになります。詳細については、Example use を参照してください。
例
アナライザー設定をコレクションスキーマに適用する前に、run_analyzer メソッドを使用して動作を確認してください。
アナライザーの設定
- Python
- Java
- NodeJS
- Go
- cURL
- C++
analyzer_params = {
"tokenizer": "standard",
"filter": [{
"type": "regex",
"expr": "^(?!test)"
}]
}
Map<String, Object> analyzerParams = new HashMap<>();
analyzerParams.put("tokenizer", "standard");
analyzerParams.put("filter",
Collections.singletonList(new HashMap<String, Object>() {{
put("type", "regex");
put("expr", "^(?!test)");
}}));
// node
analyzerParams = map[string]any{"tokenizer": "standard",
"filter": []any{map[string]any{
"type": "regex",
"expr": "^(?!test)",
}}}
# curl
nlohmann::json analyzer_params = {
{"tokenizer", "standard"},
{"filter", {
{{"type", "regex"}, {"expr", "^(?!test)"}}
}}
};
run_analyzer を使った検証
- Python
- Java
- NodeJS
- Go
- cURL
- C++
from pymilvus import (
MilvusClient,
)
client = MilvusClient(uri="YOUR_CLUSTER_ENDPOINT")
# Sample text to analyze
sample_text = "testItem apple testCase banana"
# Run the standard analyzer with the defined configuration
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")
.build();
MilvusClientV2 client = new MilvusClientV2(config);
List<String> texts = new ArrayList<>();
texts.add("testItem apple testCase banana");
RunAnalyzerResp resp = client.runAnalyzer(RunAnalyzerReq.builder()
.texts(texts)
.analyzerParams(analyzerParams)
.build());
List<RunAnalyzerResp.AnalyzerResult> results = resp.getResults();
// node
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{"testItem apple testCase banana"}
option := milvusclient.NewRunAnalyzerOption(texts).
WithAnalyzerParams(string(bs))
result, err := client.RunAnalyzer(ctx, option)
if err != nil {
fmt.Println(err.Error())
// handle error
}
# curl
#include "milvus/MilvusClientV2.h"
auto client = milvus::MilvusClientV2::Create();
milvus::ConnectParam connect_param{"YOUR_CLUSTER_ENDPOINT"};
auto status = client->Connect(connect_param);
if (!status.IsOk()) {
std::cout << status.Message() << std::endl;
}
std::string text = "testItem apple testCase banana";
auto request = milvus::RunAnalyzerRequest()
.AddText(text)
.WithAnalyzerParams(analyzer_params);
milvus::RunAnalyzerResponse response;
status = client->RunAnalyzer(request, response);
if (!status.IsOk()) {
std::cout << status.Message() << std::endl;
}
期待される出力
['apple', 'banana']