Sha256: 04697b77d279e4887e18d18ab61660d3529b0ccef88013f027c724e1db90d51e

Contents?: true

Size: 251 Bytes

Versions: 8

Compression:

Stored size: 251 Bytes

Contents

module Quarry
  module Classifier
    class NaiveBayesClassifier < Classifier
      def initialize(data_set)
        @classifier = Quarry::Classifier::ImplNaiveBayesClassifier.new(data_set.data_set)
        super(data_set)
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
thera-0.0.8 lib/quarry_rb/classifier/naive_bayes_classifier.rb
thera-0.0.7 lib/quarry_rb/classifier/naive_bayes_classifier.rb
thera-0.0.6 lib/quarry_rb/classifier/naive_bayes_classifier.rb
thera-0.0.5 lib/quarry_rb/classifier/naive_bayes_classifier.rb
thera-0.0.4 lib/quarry_rb/classifier/naive_bayes_classifier.rb
thera-0.0.3 lib/quarry_rb/classifier/naive_bayes_classifier.rb
thera-0.0.2 lib/quarry_rb/classifier/naive_bayes_classifier.rb
thera-0.0.1 lib/quarry_rb/classifier/naive_bayes_classifier.rb