I have a list of 8000 strings (stop_words) and a list of 100,000 strings of various lengths running to millions of individual words. I am using the function to tokenize the 100,000 string and to exclude non alphanumeric tokens and tokens from the list stop_words.
def tokenizer(text):
return [stemmer.stem(tok.lower()) for tok in nltk.word_tokenize(text)/
if tok.isalpha() and tok.lower() not in stop_words]
I have tested this code using 600 strings and it takes 60 seconds. If I remove the condition to exclude stopwords it takes 1 second on the same 600 strings
def tokenizer(text):
return [stemmer.stem(tok.lower()) for tok in nltk.word_tokenize(text)/
if tok.isalpha()]
I am hoping there is a more efficient way to exclude items found in one list from another list.
I am grateful for any help or suggestions
Thanks
setto exclude similar items.set(list1).difference(list2)see – Developer Jan 12 at 13:18