tensorflow/tensorflow

View on GitHub
tensorflow/python/keras/layers/recurrent.py

Summary

Maintainability
F
1 wk
Test Coverage

File recurrent.py has 2590 lines of code (exceeds 250 allowed). Consider refactoring.
Open

# Copyright 2015 The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
Severity: Major
Found in tensorflow/python/keras/layers/recurrent.py - About 1 wk to fix

    Function call has a Cognitive Complexity of 36 (exceeds 5 allowed). Consider refactoring.
    Open

      def call(self,
               inputs,
               mask=None,
               training=None,
               initial_state=None,
    Severity: Minor
    Found in tensorflow/python/keras/layers/recurrent.py - 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

    Function build has a Cognitive Complexity of 28 (exceeds 5 allowed). Consider refactoring.
    Open

      def build(self, input_shape):
        if isinstance(input_shape, list):
          input_shape = input_shape[0]
          # The input_shape here could be a nest structure.
    
    
    Severity: Minor
    Found in tensorflow/python/keras/layers/recurrent.py - About 4 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

    Function reset_states has a Cognitive Complexity of 25 (exceeds 5 allowed). Consider refactoring.
    Open

      def reset_states(self, states=None):
        """Reset the recorded states for the stateful RNN layer.
    
        Can only be used when RNN layer is constructed with `stateful` = `True`.
        Args:
    Severity: Minor
    Found in tensorflow/python/keras/layers/recurrent.py - About 3 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

    Function __init__ has 24 arguments (exceeds 4 allowed). Consider refactoring.
    Open

      def __init__(self,
    Severity: Major
    Found in tensorflow/python/keras/layers/recurrent.py - About 3 hrs to fix

      Function __init__ has 24 arguments (exceeds 4 allowed). Consider refactoring.
      Open

        def __init__(self,
      Severity: Major
      Found in tensorflow/python/keras/layers/recurrent.py - About 3 hrs to fix

        Function __init__ has 22 arguments (exceeds 4 allowed). Consider refactoring.
        Open

          def __init__(self,
        Severity: Major
        Found in tensorflow/python/keras/layers/recurrent.py - About 2 hrs to fix

          Function compute_output_shape has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
          Open

            def compute_output_shape(self, input_shape):
              if isinstance(input_shape, list):
                input_shape = input_shape[0]
              # Check whether the input shape contains any nested shapes. It could be
              # (tensor_shape(1, 2), tensor_shape(3, 4)) or (1, 2, 3) which is from numpy
          Severity: Minor
          Found in tensorflow/python/keras/layers/recurrent.py - 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

          Function __init__ has 18 arguments (exceeds 4 allowed). Consider refactoring.
          Open

            def __init__(self,
          Severity: Major
          Found in tensorflow/python/keras/layers/recurrent.py - About 2 hrs to fix

            Function __init__ has 18 arguments (exceeds 4 allowed). Consider refactoring.
            Open

              def __init__(self,
            Severity: Major
            Found in tensorflow/python/keras/layers/recurrent.py - About 2 hrs to fix

              Function __init__ has 18 arguments (exceeds 4 allowed). Consider refactoring.
              Open

                def __init__(self,
              Severity: Major
              Found in tensorflow/python/keras/layers/recurrent.py - About 2 hrs to fix

                Function __call__ has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
                Open

                  def __call__(self, inputs, initial_state=None, constants=None, **kwargs):
                    inputs, initial_state, constants = _standardize_args(inputs,
                                                                         initial_state,
                                                                         constants,
                                                                         self._num_constants)
                Severity: Minor
                Found in tensorflow/python/keras/layers/recurrent.py - 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

                Function call has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
                Open

                  def call(self, inputs, states, constants=None, training=None, **kwargs):
                    # Recover per-cell states.
                    state_size = (self.state_size[::-1]
                                  if self.reverse_state_order else self.state_size)
                    nested_states = nest.pack_sequence_as(state_size, nest.flatten(states))
                Severity: Minor
                Found in tensorflow/python/keras/layers/recurrent.py - 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

                Function __init__ has 15 arguments (exceeds 4 allowed). Consider refactoring.
                Open

                  def __init__(self,
                Severity: Major
                Found in tensorflow/python/keras/layers/recurrent.py - About 1 hr to fix

                  Function _process_inputs has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
                  Open

                    def _process_inputs(self, inputs, initial_state, constants):
                      # input shape: `(samples, time (padded with zeros), input_dim)`
                      # note that the .build() method of subclasses MUST define
                      # self.input_spec and self.state_spec with complete input shapes.
                      if (isinstance(inputs, collections.abc.Sequence)
                  Severity: Minor
                  Found in tensorflow/python/keras/layers/recurrent.py - 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

                  Function __init__ has 8 arguments (exceeds 4 allowed). Consider refactoring.
                  Open

                    def __init__(self,
                  Severity: Major
                  Found in tensorflow/python/keras/layers/recurrent.py - About 1 hr to fix

                    Function __init__ has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                    Open

                      def __init__(self,
                                   cell,
                                   return_sequences=False,
                                   return_state=False,
                                   go_backwards=False,
                    Severity: Minor
                    Found in tensorflow/python/keras/layers/recurrent.py - 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

                    Function build has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                    Open

                      def build(self, input_shape):
                        if isinstance(input_shape, list):
                          input_shape = input_shape[0]
                        for cell in self.cells:
                          if isinstance(cell, Layer) and not cell.built:
                    Severity: Minor
                    Found in tensorflow/python/keras/layers/recurrent.py - 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

                    Function call has 5 arguments (exceeds 4 allowed). Consider refactoring.
                    Open

                      def call(self, inputs, states, constants=None, training=None, **kwargs):
                    Severity: Minor
                    Found in tensorflow/python/keras/layers/recurrent.py - About 35 mins to fix

                      Function call has 5 arguments (exceeds 4 allowed). Consider refactoring.
                      Open

                        def call(self,
                      Severity: Minor
                      Found in tensorflow/python/keras/layers/recurrent.py - About 35 mins to fix

                        Function call has 5 arguments (exceeds 4 allowed). Consider refactoring.
                        Open

                          def call(self, inputs, mask=None, training=None, initial_state=None):
                        Severity: Minor
                        Found in tensorflow/python/keras/layers/recurrent.py - About 35 mins to fix

                          Function call has 5 arguments (exceeds 4 allowed). Consider refactoring.
                          Open

                            def call(self, inputs, mask=None, training=None, initial_state=None):
                          Severity: Minor
                          Found in tensorflow/python/keras/layers/recurrent.py - About 35 mins to fix

                            Function call has 5 arguments (exceeds 4 allowed). Consider refactoring.
                            Open

                              def call(self, inputs, mask=None, training=None, initial_state=None):
                            Severity: Minor
                            Found in tensorflow/python/keras/layers/recurrent.py - About 35 mins to fix

                              Function call has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                              Open

                                def call(self, inputs, states, training=None):
                                  prev_output = states[0] if nest.is_nested(states) else states
                                  dp_mask = self.get_dropout_mask_for_cell(inputs, training)
                                  rec_dp_mask = self.get_recurrent_dropout_mask_for_cell(
                                      prev_output, training)
                              Severity: Minor
                              Found in tensorflow/python/keras/layers/recurrent.py - About 35 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

                              Function get_initial_state has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                              Open

                                def get_initial_state(self, inputs=None, batch_size=None, dtype=None):
                                  initial_states = []
                                  for cell in self.cells[::-1] if self.reverse_state_order else self.cells:
                                    get_initial_state_fn = getattr(cell, 'get_initial_state', None)
                                    if get_initial_state_fn:
                              Severity: Minor
                              Found in tensorflow/python/keras/layers/recurrent.py - About 25 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

                              Function __init__ has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                              Open

                                def __init__(self, cells, **kwargs):
                                  for cell in cells:
                                    if not 'call' in dir(cell):
                                      raise ValueError('All cells must have a `call` method. '
                                                       'received cells:', cells)
                              Severity: Minor
                              Found in tensorflow/python/keras/layers/recurrent.py - About 25 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

                              There are no issues that match your filters.

                              Category
                              Status