Я удалил стоп-слова, теперь я хочу выполнить анализ настроений, но мой код показывает ошибку.
строка импорта
из стоп-слов импорта nltk.corpus
ensw = stopwords.words ('english')
из nltk.tokenize import word_tokenize, sent_tokenize
из textblob import TextBlob
импорт CSV
с открытым ('Huawei Japan Times.csv', 'r') как csv_file:
csv_reader = csv.reader(csv_file)
next(csv_reader)
for row in csv_reader:
sentence = row[0]
blob = TextBlob(sentence)
new_row = blob.lower()
token = TextBlob(sentence)
article_token = token.words
no_stop = [item for item in article_token if item not in ensw]
print(no_stop)
print()
После этого я не знаю, как выполнить анализ настроений.