You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Tokenizer build with TokenizerBuilder::into_tokenizer never take into account the stop_words,
letmut tokenizer_builder = TokenizerBuilder::new();
tokenizer_builder.stop_words(stop_words);// this creates a tokenizer without stop_wordslet tokenizer = tokenizer_builder.into_tokenizer();
The text was updated successfully, but these errors were encountered:
The Tokenizer build with
TokenizerBuilder::into_tokenizer
never take into account the stop_words,The text was updated successfully, but these errors were encountered: