本文整理汇总了Python中classifier.Classifier.setStopwords方法的典型用法代码示例。如果您正苦于以下问题:Python Classifier.setStopwords方法的具体用法?Python Classifier.setStopwords怎么用?Python Classifier.setStopwords使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类classifier.Classifier
的用法示例。
在下文中一共展示了Classifier.setStopwords方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Classifier
# 需要导入模块: from classifier import Classifier [as 别名]
# 或者: from classifier.Classifier import setStopwords [as 别名]
writer = csv.DictWriter(guessFile, fieldnames, delimiter=';', quotechar='"')
tweets = buckets.buckets[0]
tweetTexts = []
tweetIds = []
for tweet in tweets:
tweetTexts.append(tweet.txt)
tweetIds.append(tweet)
classifierSettings = {'classes': modelBuilder.totalClassCounts, 'useMentions': 1, 'useLinks': 1}
classifier = Classifier(classifierSettings)
classifier.setStopwords(stopwords)
classifier.setGrams(grams)
guesses = classifier.classifyEntries(tweetTexts, tweetIds)
correctGuesses = 0
locationGuesses = {}
correctLocationGuesses = {}
for theClass in modelBuilder.totalClassCounts:
locationGuesses[theClass] = 0
correctLocationGuesses[theClass] = 0
for guess in guesses:
writer.writerow({'id': guess['descriptor'].id, 'user': guess['descriptor'].user, 'txt': guess['descriptor'].txt, 'guessedLocation': guess['class'], 'realLocation': guess['descriptor'].location, 'certainty': guess['likelihood'], 'correct': guess['class'] == guess['descriptor'].location})