我有一些从我的数据集中删除停用词的代码,因为停用列表似乎也没有删除我想要的大部分单词,我希望将这些词添加到这个停用列表中,以便在这种情况下可以删除它们。我用来删除停用词的代码是:
word_list2 = [w.strip() for w in word_list if w.strip() not in nltk.corpus.stopwords.words
我想在google colab上的代码中使用停用词,当我导入关于nltk的东西时没有错误,但当我在代码中使用停用词时google colab给出了这个错误:-use the NLTK Downloader to obtain the resource: >>>但是当我这样做的时候:
import nltknlt