alexandrebarachant/pyRiemann

View on GitHub
pyriemann/embedding.py

Summary

Maintainability
C
7 hrs
Test Coverage

File embedding.py has 370 lines of code (exceeds 250 allowed). Consider refactoring.
Open

"""Embedding SPD matrices via manifold learning techniques."""

import warnings

import numpy as np
Severity: Minor
Found in pyriemann/embedding.py - About 4 hrs to fix

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

    def locally_linear_embedding(X,
    Severity: Major
    Found in pyriemann/embedding.py - About 50 mins to fix

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

      def barycenter_weights(X, Y, indices, metric="riemann", kernel=None, reg=1e-3):
      Severity: Minor
      Found in pyriemann/embedding.py - About 45 mins to fix

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

            def __init__(self, n_components=2,
        Severity: Minor
        Found in pyriemann/embedding.py - About 35 mins to fix

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

          def _check_dimensions(X, Y=None, n_components=None, n_neighbors=None):
              n_matrices, n_channels, n_channels = X.shape
          
              if Y is not None and Y.shape[1:] != (n_channels, n_channels):
                  msg = f"Dimension of matrices in data to be transformed must match " \
          Severity: Minor
          Found in pyriemann/embedding.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