私はここで見つけたこの小さなコードの塊を持っています:
import nltk.classify.util
from nltk.classify import NaiveBayesClassifier
from nltk.corpus import movie_reviews
from nltk.corpus import stopwords
def word_feats(words):
return dict([(word, True) for word in words])
negids = movie_reviews.fileids('neg')
posids = movie_reviews.fileids('pos')
negfeats = [(word_feats(movie_reviews.words(fileids=[f])), 'neg') for f in negids]
posfeats = [(word_feats(movie_reviews.words(fileids=[f])), 'pos') for f in posids]
negcutoff = len(negfeats)*3/4
poscutoff = len(posfeats)*3/4
trainfeats = negfeats[:negcutoff] + posfeats[:poscutoff]
testfeats = negfeats[negcutoff:] + posfeats[poscutoff:]
print 'train on %d instances, test on %d instances' % (len(trainfeats), len(testfeats))
classifier = NaiveBayesClassifier.train(trainfeats)
print 'accuracy:', nltk.classify.util.accuracy(classifier, testfeats)
classifier.show_most_informative_features()
しかし、コーパスにある可能性のあるランダムな単語をどのように分類できますか。
classifier.classify('magnificent')
うまくいきません。何らかのオブジェクトが必要ですか?
どうもありがとうございました。
編集: @unutbu のフィードバックとここを掘り下げて元の投稿のコメントを読んだおかげで、このコードの「pos」または「neg」が得られます (これは「pos」です)。
print(classifier.classify(word_feats(['magnificent'])))
これにより、「pos」または「neg」の単語の評価が得られます
print(classifier.prob_classify(word_feats(['magnificent'])).prob('neg'))