def normalize(self, text): return [token for token in self.tokenizer.tokenize(text.lower()) if token not in self.stop_words]