tensorflow/models

View on GitHub
official/projects/assemblenet/modeling/assemblenet_plus.py

Summary

Maintainability
F
3 days
Test Coverage

File assemblenet_plus.py has 592 lines of code (exceeds 250 allowed). Consider refactoring.
Open

# Copyright 2024 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 official/projects/assemblenet/modeling/assemblenet_plus.py - About 1 day to fix

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

      def __init__(self,
                   block_fn,
                   num_blocks: List[int],
                   num_frames: int,
                   model_structure: List[Any],
    Severity: Minor
    Found in official/projects/assemblenet/modeling/assemblenet_plus.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 fusion_with_peer_attention has a Cognitive Complexity of 27 (exceeds 5 allowed). Consider refactoring.
    Open

    def fusion_with_peer_attention(inputs: List[tf.Tensor],
                                   index: Optional[int] = None,
                                   attention_mode: Optional[str] = None,
                                   attention_in: Optional[List[tf.Tensor]] = None,
                                   use_5d_mode: bool = False,
    Severity: Minor
    Found in official/projects/assemblenet/modeling/assemblenet_plus.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 call has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
    Open

      def call(self,
               inputs: List[tf.Tensor],
               training: Optional[bool] = None) -> Mapping[Any, List[tf.Tensor]]:
        use_5d_mode = self._use_5d_mode
        dtype = inputs[0].dtype
    Severity: Minor
    Found in official/projects/assemblenet/modeling/assemblenet_plus.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 12 arguments (exceeds 4 allowed). Consider refactoring.
    Open

      def __init__(self,
    Severity: Major
    Found in official/projects/assemblenet/modeling/assemblenet_plus.py - About 1 hr to fix

      Function assemblenet_plus has 10 arguments (exceeds 4 allowed). Consider refactoring.
      Open

      def assemblenet_plus(assemblenet_depth: int,
      Severity: Major
      Found in official/projects/assemblenet/modeling/assemblenet_plus.py - About 1 hr to fix

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

          def __init__(self,
        Severity: Major
        Found in official/projects/assemblenet/modeling/assemblenet_plus.py - About 1 hr to fix

          Function fusion_with_peer_attention has 7 arguments (exceeds 4 allowed). Consider refactoring.
          Open

          def fusion_with_peer_attention(inputs: List[tf.Tensor],
          Severity: Major
          Found in official/projects/assemblenet/modeling/assemblenet_plus.py - About 50 mins to fix

            Avoid deeply nested control flow statements.
            Open

                        for k in nodes_below:
                          logging.info(streams[k].shape)
                          lg_channel = max(streams[k].shape[3], lg_channel)
            
            
            Severity: Major
            Found in official/projects/assemblenet/modeling/assemblenet_plus.py - About 45 mins to fix

              Avoid deeply nested control flow statements.
              Open

                          for node_index in nodes_below:
                            attn = tf.reduce_mean(streams[node_index], [1, 2])
              
                            attn = tf_keras.layers.Dense(
                                units=lg_channel,
              Severity: Major
              Found in official/projects/assemblenet/modeling/assemblenet_plus.py - About 45 mins to fix

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

                  def __init__(self,
                Severity: Minor
                Found in official/projects/assemblenet/modeling/assemblenet_plus.py - About 45 mins to fix

                  There are no issues that match your filters.

                  Category
                  Status