summaryrefslogtreecommitdiff
path: root/lib/classification.rb
blob: 638492b824b2e7eb97936291223cfec1faac9027 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
module OpenTox
  module Algorithm
    
    # Classification algorithms
    class Classification

      # Weighted majority vote
      # @param [Array<TrueClass,FalseClass>] dependent_variables
      # @param [Array<Float>] weights
      # @return [Hash]
      def self.weighted_majority_vote dependent_variables:, independent_variables:nil, weights:, query_variables:nil
        class_weights = {}
        dependent_variables.each_with_index do |v,i|
          class_weights[v] ||= []
          class_weights[v] << weights[i] unless v.nil?
        end
        probabilities = {}
        class_weights.each do |a,w|
          probabilities[a] = w.sum/weights.sum
        end
        probabilities = probabilities.collect{|a,p| [a,weights.max*p]}.to_h
        p_max = probabilities.collect{|a,p| p}.max
        prediction = probabilities.key(p_max)
        {:value => prediction,:probabilities => probabilities}
      end

    end

  end
end