1
私はNews Paperの見出しの感情分析のためにNaive Bayesアルゴリズムを実装しようとしています。私は、この目的のためにTextBlobを使用していると私はそれが困難な「A」などのストップワードを削除するには見つけることだ、「」、など以下の「中」のpythonでの私のコードの抜粋です:テキストの感情分析のためにtextblobでストップワードを削除する効率的な方法はどれですか?
from textblob.classifiers import NaiveBayesClassifier
from textblob import TextBlob
test = [
("11 bonded labourers saved from shoe firm", "pos"),
("Scientists greet Abdul Kalam after the successful launch of Agni on May 22, 1989","pos"),
("Heavy Winter Snow Storm Lashes Out In Northeast US", "neg"),
("Apparent Strike On Gaza Tunnels Kills 2 Palestinians", "neg")
]
with open('input.json', 'r') as fp:
cl = NaiveBayesClassifier(fp, format="json")
print(cl.classify("Oil ends year with biggest gain since 2009")) # "pos"
print(cl.classify("25 dead in Baghdad blasts")) # "neg"