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
Current, word_tokenize function call word tokenizer engine in every using because it doesn't have global variable for store the engine, so it needs to reload same word tokenizer engine in every using.
We can fix by using global variable for store the engine and engine's name than check if it call same engine, it doesn't call word tokenizer engine.
The text was updated successfully, but these errors were encountered:
Current,
word_tokenize
function call word tokenizer engine in every using because it doesn't have global variable for store the engine, so it needs to reload same word tokenizer engine in every using.We can fix by using global variable for store the engine and engine's name than check if it call same engine, it doesn't call word tokenizer engine.
The text was updated successfully, but these errors were encountered: