Skip to content
#

multi-label-classification

Here are 123 public repositories matching this topic...

JiaWenqi
JiaWenqi commented Mar 13, 2019

def get_all_words(self): """ Return all words tokenized, in lowercase and without punctuation """ return [w.lower() for w in word_tokenize(self.text) if w not in string.punctuation]
I found that in this function, only punctuation of the text was removed. But there are other types of words that have not been removed.
eg:
`from nltk.corpus import stopwords

Improve this page

Add a description, image, and links to the multi-label-classification topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the multi-label-classification topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.