ホワイトスペーストークナイザー
whitespace
トークナイザーは、ホワイトスペース文字に遭遇するたびにテキストを用語に分割します。
例の出力
Python
resp = client.indices.analyze(
tokenizer="whitespace",
text="The 2 QUICK Brown-Foxes jumped over the lazy dog's bone.",
)
print(resp)
Ruby
response = client.indices.analyze(
body: {
tokenizer: 'whitespace',
text: "The 2 QUICK Brown-Foxes jumped over the lazy dog's bone."
}
)
puts response
Js
const response = await client.indices.analyze({
tokenizer: "whitespace",
text: "The 2 QUICK Brown-Foxes jumped over the lazy dog's bone.",
});
console.log(response);
コンソール
POST _analyze
{
"tokenizer": "whitespace",
"text": "The 2 QUICK Brown-Foxes jumped over the lazy dog's bone."
}
上記の文は次の用語を生成します:
テキスト
[ The, 2, QUICK, Brown-Foxes, jumped, over, the, lazy, dog's, bone. ]
設定
whitespace
トークナイザーは次のパラメータを受け入れます:
max_token_length |
最大トークン長。 この長さを超えるトークンが見られた場合、 それは max_token_length インターバルで分割されます。 デフォルトは 255 です。 |