私はつぶやきのクラシファイアをトレーニングしようとしています。しかし、問題は、分類子が100%の精度を持ち、最も有益な特徴のリストには何も表示されないということです。誰かが私が間違っていることを知っていますか?私はクラシファイアへの私のすべての入力が正しいと思うので、どこが間違っているのか分かりません。NLTK Naive Bayesクラシファイアトレーニングの問題
FEATURE_SET = [(find_features(all_words:
import nltk
import random
file = open('Train/train.txt', 'r')
documents = []
all_words = [] #TODO remove punctuation?
INPUT_TWEETS = 3000
print("Preprocessing...")
for line in (file):
# Tokenize Tweet content
tweet_words = nltk.word_tokenize(line[2:])
sentiment = ""
if line[0] == 0:
sentiment = "negative"
else:
sentiment = "positive"
documents.append((tweet_words, sentiment))
for word in tweet_words:
all_words.append(word.lower())
INPUT_TWEETS = INPUT_TWEETS - 1
if INPUT_TWEETS == 0:
break
random.shuffle(documents)
all_words = nltk.FreqDist(all_words)
word_features = list(all_words.keys())[:3000] #top 3000 words
def find_features(document):
words = set(document)
features = {}
for w in word_features:
features[w] = (w in words)
return features
#Categorize as positive or Negative
feature_set = [(find_features(all_words), sentiment) for (all_words, sentment) in documents]
training_set = feature_set[:1000]
testing_set = feature_set[1000:]
print("Training...")
classifier = nltk.NaiveBayesClassifier.train(training_set)
print("Naive Bayes Accuracy:", (nltk.classify.accuracy(classifier,testing_set))*100)
classifier.show_most_informative_features(15)
が問題のように見える[0] '' int' '0'に沿っ 'の文字を比較しています。私はあなたの入力が否定的な感情を示すために実際にヌルバイトを使用するのか疑問です。 – alexis