mfinzi/pristine-ml

View on GitHub

Showing 97 of 97 total issues

Function argupdated_config has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
Open

def argupdated_config(cfg,parser=None, namespace=None):
    """ Uses the cfg to generate a parser spec which parses the command line arguments
        and outputs the updated config. An existing argparser can be specified."""
    # TODO: throw error for clobbered names
    flat_cfg = flatten(cfg)
Severity: Minor
Found in oil/tuning/args.py - 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

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

        devIndices[i*dev_m:i*dev_m+dev_m] = sampledclassIndices[lab_m:]
Severity: Minor
Found in oil/datasetup/dataloaders.py and 1 other location - About 55 mins to fix
oil/datasetup/dataloaders.py on lines 56..56

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 37.

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 2 locations. Consider refactoring.
Open

        labIndices[i*lab_m:i*lab_m+lab_m] = sampledclassIndices[:lab_m]
Severity: Minor
Found in oil/datasetup/dataloaders.py and 1 other location - About 55 mins to fix
oil/datasetup/dataloaders.py on lines 57..57

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 37.

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

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

    def __init__(self, in_channels, out_channels, kernel_size, stride=1, padding=0, groups=1, bias=False):
Severity: Major
Found in oil/architectures/img_classifiers/transformer.py - About 50 mins to fix

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

        def __init__(self, in_channels, out_channels, kernel_size, stride=1, padding=0, dilation=1,bias=False):
    Severity: Major
    Found in oil/architectures/parts/deconv.py - About 50 mins to fix

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

          def __init__(self,in_channels,out_channels,ksize=3,drop_rate=0,stride=1,gn=False,**kwargs):
      Severity: Major
      Found in oil/architectures/parts/blocks.py - About 50 mins to fix

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

        def getLabLoader(trainset, lab_BS, amnt_lab=1, amnt_dev=0, dataseed=0, balanced=True,**kwargs):
        Severity: Major
        Found in oil/datasetup/dataloaders.py - About 50 mins to fix

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

              def __init__(self, root, split='train', joint_transform=None,
          Severity: Minor
          Found in oil/datasetup/camvid.py - About 45 mins to fix

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

                def __init__(self, depth=22, block=Bottleneck, 
            Severity: Minor
            Found in oil/architectures/img_classifiers/densenet.py - About 45 mins to fix

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

                  def __init__(self, block, layers, channels, groups=1, num_targets=1000, downsample='basic'):
              Severity: Minor
              Found in oil/architectures/img_classifiers/shake_shake.py - About 45 mins to fix

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

                    def __init__(self, block, layers, channels, groups=1, num_targets=1000, downsample='basic'):
                Severity: Minor
                Found in oil/architectures/img_classifiers/shake_shake.py - About 45 mins to fix

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

                      def __init__(self, *args,D=None,opt_constr=None,lr_sched=lambda e:1,
                  Severity: Minor
                  Found in oil/model_trainers/gan.py - About 45 mins to fix

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

                        def __init__(self,  num_groups, eps=1e-2,n_iter=5,momentum=0.1,sampling_stride=3,debug=False):
                    Severity: Minor
                    Found in oil/architectures/parts/deconv.py - About 45 mins to fix

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

                          def __init__(self,k=64,ksize=7,drop_rate=0,stride=1,gn=False,num_heads=8):
                      Severity: Minor
                      Found in oil/architectures/img_classifiers/transformer.py - About 45 mins to fix

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

                            def __init__(self, num_targets=10, depth=28, widen_factor=10, drop_rate=0.3,in_channels=3,initial_stride=1):
                        Severity: Minor
                        Found in oil/architectures/img_classifiers/wide_resnet.py - About 45 mins to fix

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

                                  if(self.filt_size==1):
                                      if(self.pad_off==0):
                                          return inp[:,:,::self.stride,::self.stride]    
                                      else:
                                          return self.pad(inp)[:,:,::self.stride,::self.stride]
                          Severity: Minor
                          Found in oil/architectures/parts/antialiasing.py and 1 other location - About 45 mins to fix
                          oil/architectures/parts/antialiasing.py on lines 111..117

                          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 35.

                          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

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

                          def _queue_management_worker(executor_reference,
                          Severity: Minor
                          Found in oil/tuning/localGpuExecutor.py - About 45 mins to fix

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

                            def conv2d(in_channels,out_channels,kernel_size=3,coords=False,dilation=1,**kwargs):
                            Severity: Minor
                            Found in oil/architectures/parts/blocks.py - About 45 mins to fix

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

                                      if(self.filt_size == 1):
                                          if(self.pad_off == 0):
                                              return inp[:, :, ::self.stride]
                                          else:
                                              return self.pad(inp)[:, :, ::self.stride]
                              Severity: Minor
                              Found in oil/architectures/parts/antialiasing.py and 1 other location - About 45 mins to fix
                              oil/architectures/parts/antialiasing.py on lines 49..55

                              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 35.

                              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

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

                              def make_layers(cfg, batch_norm=False):
                                  layers = list()
                                  in_channels = 3
                                  for v in cfg:
                                      if v == 'M':
                              Severity: Minor
                              Found in oil/architectures/img_classifiers/vgg.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

                              Severity
                              Category
                              Status
                              Source
                              Language