tensorflow/models

View on GitHub
official/vision/modeling/backbones/spinenet.py

Summary

Maintainability
D
2 days
Test Coverage

File spinenet.py has 498 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: Minor
Found in official/vision/modeling/backbones/spinenet.py - About 7 hrs to fix

    Function _build_scale_permuted_network has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
    Open

      def _build_scale_permuted_network(self,
                                        net,
                                        input_width,
                                        weighted_fusion=False):
        """Builds scale-permuted network."""
    Severity: Minor
    Found in official/vision/modeling/backbones/spinenet.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 17 arguments (exceeds 4 allowed). Consider refactoring.
    Open

      def __init__(
    Severity: Major
    Found in official/vision/modeling/backbones/spinenet.py - About 2 hrs to fix

      Function __init__ has 29 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        def __init__(
            self,
            input_specs: tf_keras.layers.InputSpec = tf_keras.layers.InputSpec(
                shape=[None, None, None, 3]),
            min_level: int = 3,
      Severity: Minor
      Found in official/vision/modeling/backbones/spinenet.py - About 1 hr to fix

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

          def _resample_with_alpha(self,
        Severity: Major
        Found in official/vision/modeling/backbones/spinenet.py - About 50 mins to fix

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

            def _block_group(self,
          Severity: Major
          Found in official/vision/modeling/backbones/spinenet.py - About 50 mins to fix

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

              def _resample_with_alpha(self,
                                       inputs,
                                       input_width,
                                       input_block_fn,
                                       target_width,
            Severity: Minor
            Found in official/vision/modeling/backbones/spinenet.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