“Удалить стоп -слова” Ответ

Удалить стоп -слова

from nltk.corpus import stopwords
from nltk.tokenize import word_tokenize
 
example_sent = """This is a sample sentence,
                  showing off the stop words filtration."""
 
stop_words = set(stopwords.words('english'))
 
word_tokens = word_tokenize(example_sent)
 
filtered_sentence = [w for w in word_tokens if not w.lower() in stop_words]
Hurt Hedgehog

Удалить стоп -слова

traindf['title'] = traindf['title'].apply(lambda x: ' '.join([word for word in x.lower().split() if word not in 
                                                            stopwords.words('english') and string.punctuation]))
Clear Copperhead

Ответы похожие на “Удалить стоп -слова”

Вопросы похожие на “Удалить стоп -слова”

Больше похожих ответов на “Удалить стоп -слова” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования