1
我試圖用NLTK包寫一個python程序來刪除從一個句子停用詞NLTK停用詞返回錯誤「LazyCorpusLoader是不可調用的」
from nltk.corpus import stopwords
chachedWords = stopwords.words('english')
下面給出TypeError: 'LazyCorpusLoader' object is not callable
我試圖用NLTK包寫一個python程序來刪除從一個句子停用詞NLTK停用詞返回錯誤「LazyCorpusLoader是不可調用的」
from nltk.corpus import stopwords
chachedWords = stopwords.words('english')
下面給出TypeError: 'LazyCorpusLoader' object is not callable
嘗試:
from nltk.corpus import stopwords
import nltk
nltk.download("stopwords")
chachedWords = stopwords.words('english')
謝謝。剛剛發現導入錯誤。嘗試下載。 – yashgarg1232