シンプルアナライザー
simple
アナライザーは、数字、スペース、ハイフン、アポストロフィなどの非文字文字でテキストをトークンに分割し、非文字文字を破棄し、大文字を小文字に変換します。
例
Python
resp = client.indices.analyze(
analyzer="simple",
text="The 2 QUICK Brown-Foxes jumped over the lazy dog's bone.",
)
print(resp)
Ruby
response = client.indices.analyze(
body: {
analyzer: 'simple',
text: "The 2 QUICK Brown-Foxes jumped over the lazy dog's bone."
}
)
puts response
Js
const response = await client.indices.analyze({
analyzer: "simple",
text: "The 2 QUICK Brown-Foxes jumped over the lazy dog's bone.",
});
console.log(response);
コンソール
POST _analyze
{
"analyzer": "simple",
"text": "The 2 QUICK Brown-Foxes jumped over the lazy dog's bone."
}
simple
アナライザーは文を解析し、次のトークンを生成します:
テキスト
[ the, quick, brown, foxes, jumped, over, the, lazy, dog, s, bone ]
定義
simple
アナライザーは1つのトークナイザーによって定義されます:
- トークナイザー
カスタマイズ
simple
アナライザーをカスタマイズするには、それを複製してカスタムアナライザーの基礎を作成します。このカスタムアナライザーは、通常、トークンフィルターを追加することによって必要に応じて変更できます。
Python
resp = client.indices.create(
index="my-index-000001",
settings={
"analysis": {
"analyzer": {
"my_custom_simple_analyzer": {
"tokenizer": "lowercase",
"filter": []
}
}
}
},
)
print(resp)
Ruby
response = client.indices.create(
index: 'my-index-000001',
body: {
settings: {
analysis: {
analyzer: {
my_custom_simple_analyzer: {
tokenizer: 'lowercase',
filter: []
}
}
}
}
}
)
puts response
Js
const response = await client.indices.create({
index: "my-index-000001",
settings: {
analysis: {
analyzer: {
my_custom_simple_analyzer: {
tokenizer: "lowercase",
filter: [],
},
},
},
},
});
console.log(response);
コンソール
PUT /my-index-000001
{
"settings": {
"analysis": {
"analyzer": {
"my_custom_simple_analyzer": {
"tokenizer": "lowercase",
"filter": [
]
}
}
}
}
}
トークンフィルターをここに追加します。 |