IBM/pytorchpipe

View on GitHub
ptp/components/mixins/word_mappings.py

Summary

Maintainability
A
2 hrs
Test Coverage

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

    def __init__(self): #, name, class_type, config):
        """
        Initializes the (word:index) mappings.

        Assumes that Component was initialized in advance, which means that the self object possesses the following objects:
Severity: Minor
Found in ptp/components/mixins/word_mappings.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 save_word_mappings_to_csv_file has 5 arguments (exceeds 4 allowed). Consider refactoring.
Open

def save_word_mappings_to_csv_file(logger, folder, filename, word_to_ix, fieldnames = ["word","index"]):
Severity: Minor
Found in ptp/components/mixins/word_mappings.py - About 35 mins to fix

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

    def pad_trunc_list(l: list, length: int, padding_value = 0, eos_value = None):
        """
        Will apply padding / clipping to list to meet requested length.
        Works on the list in-place.
    
    
    Severity: Minor
    Found in ptp/components/mixins/word_mappings.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