ホワイトスペーストークナイザー

whitespace トークナイザーは、ホワイトスペース文字に遭遇するたびにテキストを用語に分割します。

例の出力

Python

  1. resp = client.indices.analyze(
  2. tokenizer="whitespace",
  3. text="The 2 QUICK Brown-Foxes jumped over the lazy dog's bone.",
  4. )
  5. print(resp)

Ruby

  1. response = client.indices.analyze(
  2. body: {
  3. tokenizer: 'whitespace',
  4. text: "The 2 QUICK Brown-Foxes jumped over the lazy dog's bone."
  5. }
  6. )
  7. puts response

Js

  1. const response = await client.indices.analyze({
  2. tokenizer: "whitespace",
  3. text: "The 2 QUICK Brown-Foxes jumped over the lazy dog's bone.",
  4. });
  5. console.log(response);

コンソール

  1. POST _analyze
  2. {
  3. "tokenizer": "whitespace",
  4. "text": "The 2 QUICK Brown-Foxes jumped over the lazy dog's bone."
  5. }

上記の文は次の用語を生成します:

テキスト

  1. [ The, 2, QUICK, Brown-Foxes, jumped, over, the, lazy, dog's, bone. ]

設定

whitespace トークナイザーは次のパラメータを受け入れます:

max_token_length 最大トークン長。 この長さを超えるトークンが見られた場合、
それは max_token_length インターバルで分割されます。 デフォルトは 255 です。