Tokenizers¶
Currently, Lance has built-in support for ICU, Jieba, and Lindera. ICU uses built-in segmenter data. Jieba and Lindera require external language models. If tokenization is needed, you can download language models by yourself. You can specify the location where the language models are stored by setting the environment variable LANCE_LANGUAGE_MODEL_HOME. If it's not set, the default value is
It also supports configuring user dictionaries, which makes it convenient for users to expand their own dictionaries without retraining the language models.
Inspect Query Tokenization¶
Use lance.tokenize to inspect the tokens that a full-text query will produce
without creating a dataset or index:
import lance
tokens = lance.tokenize("the Cats and Dogs")
[(token.text, token.position) for token in tokens]
# [("cat", 0), ("dog", 2)]
Positions start at the first retained query token and preserve gaps left by stop
word removal and other filters. This is the same representation used for phrase
matching. The function accepts the tokenizer-related options supported by
LanceDataset.create_scalar_index, including custom stop words, n-grams, and the
code analyzer:
tokens = lance.tokenize(
"getUserName::value42",
analyzer="code",
split_identifiers=True,
index_operators=True,
)
Options set to None use the selected analyzer profile's default. For example,
the code analyzer disables stemming and stop-word removal unless explicitly
overridden. The exception is max_token_length: omitting it keeps the default
length limit of 40, while max_token_length=None disables the limit.
ICU Tokenizer¶
ICU uses Unicode word boundary rules and bundled dictionary data for complex scripts. It is useful for mixed-language text and does not require downloading a language model.
Use icu/split when mixed-language text also contains punctuation-delimited identifiers that should be searchable by part.
Language Models of Jieba¶
Downloading the Model¶
The language model is stored by default in ${LANCE_LANGUAGE_MODEL_HOME}/jieba/default.
Using the Model¶
User Dictionaries¶
Create a file named config.json in the root directory of the current model.
- The "main" field is optional. If not filled, the default is "dict.txt".
- "users" is the path of the user dictionary. For the format of the user dictionary, please refer to https://github.com/messense/jieba-rs/blob/main/jieba/src/data/dict.txt.
Language Models of Lindera¶
Downloading the Model¶
Note that the language models of Lindera need to be compiled. Please install lindera-cli first. For detailed steps, please refer to https://github.com/lindera/lindera/tree/main/lindera-cli.
The language model is stored by default in ${LANCE_LANGUAGE_MODEL_HOME}/lindera/[ipadic|ko-dic|unidic]
Using the Model¶
User Dictionaries¶
Create a file named config.yml in the root directory of your model, or specify a custom YAML file using the LINDERA_CONFIG_PATH environment variable.
If both are provided, the config.yml in the root directory will be used.
For more detailed configuration methods, see the lindera documentation at https://github.com/lindera/lindera/.
Create your own language model¶
Put your language model into LANCE_LANGUAGE_MODEL_HOME.