SergioFierens/ai4r

View on GitHub

Showing 28 of 28 total issues

Similar blocks of code found in 9 locations. Consider refactoring.
Open

SQUARE_WITH_NOISE = [
  [10,  3, 10, 10, 10,  6, 10, 10, 10, 10, 10,  4, 10, 10, 10, 10],
  [10,  0,  0,  0,  0,  7,  0,  0,  0,  0,  0,  0,  0,  0,  0, 10],
  [10,  0,  3,  0,  0,  0,  0,  7,  0,  6,  1,  0,  0,  0,  0,  0],
  [10,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0, 10],
Severity: Major
Found in examples/neural_network/patterns_with_noise.rb and 8 other locations - About 1 day to fix
examples/neural_network/patterns_with_base_noise.rb on lines 11..28
examples/neural_network/patterns_with_base_noise.rb on lines 30..47
examples/neural_network/patterns_with_base_noise.rb on lines 50..67
examples/neural_network/patterns_with_noise.rb on lines 10..27
examples/neural_network/patterns_with_noise.rb on lines 49..66
examples/neural_network/training_patterns.rb on lines 11..28
examples/neural_network/training_patterns.rb on lines 30..47
examples/neural_network/training_patterns.rb on lines 50..67

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 274.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 9 locations. Consider refactoring.
Open

CROSS_WITH_BASE_NOISE = [
  [ 3,  3,  3,  3,  3,  3,  3,  8,  8,  3,  3,  3,  3,  3,  3,  3],
  [ 3,  3,  3,  3,  3,  3,  3,  8,  8,  3,  3,  3,  3,  3,  3,  3],
  [ 3,  3,  3,  3,  3,  3,  3,  8,  8,  3,  3,  3,  3,  3,  3,  3],
  [ 3,  3,  3,  3,  3,  3,  3,  8,  8,  3,  3,  3,  3,  3,  3,  3],
Severity: Major
Found in examples/neural_network/patterns_with_base_noise.rb and 8 other locations - About 1 day to fix
examples/neural_network/patterns_with_base_noise.rb on lines 11..28
examples/neural_network/patterns_with_base_noise.rb on lines 30..47
examples/neural_network/patterns_with_noise.rb on lines 10..27
examples/neural_network/patterns_with_noise.rb on lines 29..46
examples/neural_network/patterns_with_noise.rb on lines 49..66
examples/neural_network/training_patterns.rb on lines 11..28
examples/neural_network/training_patterns.rb on lines 30..47
examples/neural_network/training_patterns.rb on lines 50..67

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 274.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 9 locations. Consider refactoring.
Open

TRIANGLE_WITH_NOISE = [
  [ 1,  0,  0,  0,  0,  0,  0,  1,  5,  0,  0,  1,  0,  0,  0,  0],
  [ 0,  0,  0,  0,  3,  0,  1,  9,  9,  1,  0,  0,  0,  0,  3,  0],
  [ 0,  3,  0,  0,  0,  0,  5,  1,  5,  3,  0,  0,  0,  0,  0,  7],
  [ 0,  0,  0,  7,  0,  1,  9,  1,  1,  9,  1,  0,  0,  0,  3,  0],
Severity: Major
Found in examples/neural_network/patterns_with_noise.rb and 8 other locations - About 1 day to fix
examples/neural_network/patterns_with_base_noise.rb on lines 11..28
examples/neural_network/patterns_with_base_noise.rb on lines 30..47
examples/neural_network/patterns_with_base_noise.rb on lines 50..67
examples/neural_network/patterns_with_noise.rb on lines 29..46
examples/neural_network/patterns_with_noise.rb on lines 49..66
examples/neural_network/training_patterns.rb on lines 11..28
examples/neural_network/training_patterns.rb on lines 30..47
examples/neural_network/training_patterns.rb on lines 50..67

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 274.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 9 locations. Consider refactoring.
Open

TRIANGLE_WITH_BASE_NOISE = [
  [ 3,  3,  3,  3,  3,  3,  3,  8,  8,  3,  3,  3,  3,  3,  3,  3],
  [ 3,  3,  3,  3,  3,  3,  4, 10, 10,  4,  3,  3,  3,  3,  3,  3],
  [ 3,  3,  3,  3,  3,  3,  8,  8,  8,  8,  3,  3,  3,  3,  3,  3],
  [ 3,  3,  3,  3,  3,  4, 10,  4,  4, 10,  4,  3,  3,  3,  3,  3],
Severity: Major
Found in examples/neural_network/patterns_with_base_noise.rb and 8 other locations - About 1 day to fix
examples/neural_network/patterns_with_base_noise.rb on lines 30..47
examples/neural_network/patterns_with_base_noise.rb on lines 50..67
examples/neural_network/patterns_with_noise.rb on lines 10..27
examples/neural_network/patterns_with_noise.rb on lines 29..46
examples/neural_network/patterns_with_noise.rb on lines 49..66
examples/neural_network/training_patterns.rb on lines 11..28
examples/neural_network/training_patterns.rb on lines 30..47
examples/neural_network/training_patterns.rb on lines 50..67

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 274.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 9 locations. Consider refactoring.
Open

SQUARE = [
  [10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10],
  [10,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0, 10],
  [10,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0, 10],
  [10,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0, 10],
Severity: Major
Found in examples/neural_network/training_patterns.rb and 8 other locations - About 1 day to fix
examples/neural_network/patterns_with_base_noise.rb on lines 11..28
examples/neural_network/patterns_with_base_noise.rb on lines 30..47
examples/neural_network/patterns_with_base_noise.rb on lines 50..67
examples/neural_network/patterns_with_noise.rb on lines 10..27
examples/neural_network/patterns_with_noise.rb on lines 29..46
examples/neural_network/patterns_with_noise.rb on lines 49..66
examples/neural_network/training_patterns.rb on lines 11..28
examples/neural_network/training_patterns.rb on lines 50..67

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 274.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 9 locations. Consider refactoring.
Open

SQUARE_WITH_BASE_NOISE = [
  [10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10],
  [10,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3, 10],
  [10,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3, 10],
  [10,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3, 10],
Severity: Major
Found in examples/neural_network/patterns_with_base_noise.rb and 8 other locations - About 1 day to fix
examples/neural_network/patterns_with_base_noise.rb on lines 11..28
examples/neural_network/patterns_with_base_noise.rb on lines 50..67
examples/neural_network/patterns_with_noise.rb on lines 10..27
examples/neural_network/patterns_with_noise.rb on lines 29..46
examples/neural_network/patterns_with_noise.rb on lines 49..66
examples/neural_network/training_patterns.rb on lines 11..28
examples/neural_network/training_patterns.rb on lines 30..47
examples/neural_network/training_patterns.rb on lines 50..67

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 274.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 9 locations. Consider refactoring.
Open

TRIANGLE = [
  [ 0,  0,  0,  0,  0,  0,  0,  5,  5,  0,  0,  0,  0,  0,  0,  0],
  [ 0,  0,  0,  0,  0,  0,  1,  9,  9,  1,  0,  0,  0,  0,  0,  0],
  [ 0,  0,  0,  0,  0,  0,  5,  5,  5,  5,  0,  0,  0,  0,  0,  0],
  [ 0,  0,  0,  0,  0,  1,  9,  1,  1,  9,  1,  0,  0,  0,  0,  0],
Severity: Major
Found in examples/neural_network/training_patterns.rb and 8 other locations - About 1 day to fix
examples/neural_network/patterns_with_base_noise.rb on lines 11..28
examples/neural_network/patterns_with_base_noise.rb on lines 30..47
examples/neural_network/patterns_with_base_noise.rb on lines 50..67
examples/neural_network/patterns_with_noise.rb on lines 10..27
examples/neural_network/patterns_with_noise.rb on lines 29..46
examples/neural_network/patterns_with_noise.rb on lines 49..66
examples/neural_network/training_patterns.rb on lines 30..47
examples/neural_network/training_patterns.rb on lines 50..67

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 274.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 9 locations. Consider refactoring.
Open

CROSS = [
  [ 0,  0,  0,  0,  0,  0,  0,  5,  5,  0,  0,  0,  0,  0,  0,  0],
  [ 0,  0,  0,  0,  0,  0,  0,  5,  5,  0,  0,  0,  0,  0,  0,  0],
  [ 0,  0,  0,  0,  0,  0,  0,  5,  5,  0,  0,  0,  0,  0,  0,  0],
  [ 0,  0,  0,  0,  0,  0,  0,  5,  5,  0,  0,  0,  0,  0,  0,  0],
Severity: Major
Found in examples/neural_network/training_patterns.rb and 8 other locations - About 1 day to fix
examples/neural_network/patterns_with_base_noise.rb on lines 11..28
examples/neural_network/patterns_with_base_noise.rb on lines 30..47
examples/neural_network/patterns_with_base_noise.rb on lines 50..67
examples/neural_network/patterns_with_noise.rb on lines 10..27
examples/neural_network/patterns_with_noise.rb on lines 29..46
examples/neural_network/patterns_with_noise.rb on lines 49..66
examples/neural_network/training_patterns.rb on lines 11..28
examples/neural_network/training_patterns.rb on lines 30..47

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 274.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 9 locations. Consider refactoring.
Open

CROSS_WITH_NOISE = [
  [ 0,  0,  0,  0,  0,  0,  3,  3,  5,  0,  3,  0,  0,  0,  1,  0],
  [ 0,  1,  0,  0,  0,  1,  0,  5,  5,  0,  0,  0,  0,  0,  0,  0],
  [ 0,  0,  0,  0,  0,  0,  0,  5,  5,  0,  0,  0,  3,  0,  0,  0],
  [ 0,  0,  1,  8,  0,  0,  0,  5,  5,  0,  4,  0,  0,  0,  1,  0],
Severity: Major
Found in examples/neural_network/patterns_with_noise.rb and 8 other locations - About 1 day to fix
examples/neural_network/patterns_with_base_noise.rb on lines 11..28
examples/neural_network/patterns_with_base_noise.rb on lines 30..47
examples/neural_network/patterns_with_base_noise.rb on lines 50..67
examples/neural_network/patterns_with_noise.rb on lines 10..27
examples/neural_network/patterns_with_noise.rb on lines 29..46
examples/neural_network/training_patterns.rb on lines 11..28
examples/neural_network/training_patterns.rb on lines 30..47
examples/neural_network/training_patterns.rb on lines 50..67

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 274.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Method populate_centroids has a Cognitive Complexity of 36 (exceeds 5 allowed). Consider refactoring.
Open

      def populate_centroids(populate_method, number_of_clusters=@number_of_clusters)
        tried_indexes = []
        case populate_method
        when 'random' # for initial assignment (without the :centroid_indices option) and for reassignment of empty cluster centroids (with :on_empty option 'random')
          while @centroids.length < number_of_clusters && 
Severity: Minor
Found in lib/ai4r/clusterers/k_means.rb - About 5 hrs to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Method distance has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
Open

      def distance(a, b)
        d = 0
        a.each_with_index do |att_a, i|
          att_b = b[i]
          if att_a.nil?
Severity: Minor
Found in lib/ai4r/classifiers/ib1.rb - About 2 hrs to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Class DataSet has 21 methods (exceeds 20 allowed). Consider refactoring.
Open

    class DataSet

      attr_reader :data_labels, :data_items

      # Create a new DataSet. By default, empty.
Severity: Minor
Found in lib/ai4r/data/data_set.rb - About 2 hrs to fix

    Method build has 50 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

          def build(data)
            raise "Error instance must be passed" unless data.is_a?(DataSet)
            raise "Data should not be empty" if data.data_items.length == 0
            y_mean = data.get_mean_or_mode[data.num_attributes - 1]
    
    
    Severity: Minor
    Found in lib/ai4r/classifiers/simple_linear_regression.rb - About 2 hrs to fix

      Method build has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
      Open

            def build(data)
              raise "Error instance must be passed" unless data.is_a?(DataSet)
              raise "Data should not be empty" if data.data_items.length == 0
              y_mean = data.get_mean_or_mode[data.num_attributes - 1]
      
      
      Severity: Minor
      Found in lib/ai4r/classifiers/simple_linear_regression.rb - About 1 hr to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Method populate_centroids has 39 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

            def populate_centroids(populate_method, number_of_clusters=@number_of_clusters)
              tried_indexes = []
              case populate_method
              when 'random' # for initial assignment (without the :centroid_indices option) and for reassignment of empty cluster centroids (with :on_empty option 'random')
                while @centroids.length < number_of_clusters && 
      Severity: Minor
      Found in lib/ai4r/clusterers/k_means.rb - About 1 hr to fix

        Method update_min_max has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
        Open

              def update_min_max(atts)
                atts.each_with_index do |att, i|
                  if att && att.is_a?(Numeric)
                    @min_values[i] = att if @min_values[i].nil? || @min_values[i] > att
                    @max_values[i] = att if @max_values[i].nil? || @max_values[i] < att
        Severity: Minor
        Found in lib/ai4r/classifiers/ib1.rb - About 1 hr to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Method eval has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
        Open

              def eval(data)
                votes = Votes.new
                @pipes.each do |category, pipe|
                  pipe.each_with_index do |bounds, i|
                    if data[i].is_a? Numeric
        Severity: Minor
        Found in lib/ai4r/classifiers/hyperpipes.rb - About 55 mins to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Method update_pipe has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
        Open

              def update_pipe(pipe, data_item)
                data_item[0...-1].each_with_index do |att, i|
                  if att.is_a? Numeric
                    pipe[i][:min] = att if att < pipe[i][:min]
                    pipe[i][:max] = att if att > pipe[i][:max]
        Severity: Minor
        Found in lib/ai4r/classifiers/hyperpipes.rb - About 55 mins to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Method reproduce has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

              def self.reproduce(a, b)
                data_size = @@costs[0].length
                available = []
                0.upto(data_size-1) { |n| available << n }
                token = a.data[0]
        Severity: Minor
        Found in lib/ai4r/genetic_algorithm/genetic_algorithm.rb - About 45 mins to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Method initialize has 6 arguments (exceeds 4 allowed). Consider refactoring.
        Open

              def initialize(nodes, learning_rate = 0.9, phase_one = 150, phase_two = 100,
                      phase_one_learning_rate = 0.1, phase_two_learning_rate = 0)
        Severity: Minor
        Found in lib/ai4r/som/two_phase_layer.rb - About 45 mins to fix
          Severity
          Category
          Status
          Source
          Language