Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
nltk / test / unit / test_naivebayes.py
Size: Mime:
import unittest

from nltk.classify.naivebayes import NaiveBayesClassifier


class NaiveBayesClassifierTest(unittest.TestCase):
    def test_simple(self):
        training_features = [
            ({"nice": True, "good": True}, "positive"),
            ({"bad": True, "mean": True}, "negative"),
        ]

        classifier = NaiveBayesClassifier.train(training_features)

        result = classifier.prob_classify({"nice": True})
        self.assertTrue(result.prob("positive") > result.prob("negative"))
        self.assertEqual(result.max(), "positive")

        result = classifier.prob_classify({"bad": True})
        self.assertTrue(result.prob("positive") < result.prob("negative"))
        self.assertEqual(result.max(), "negative")