RasaHQ/rasa_core

View on GitHub
rasa/core/policies/ensemble.py

Summary

Maintainability
B
6 hrs
Test Coverage

File ensemble.py has 304 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import importlib
import json
import logging
import os
import sys
Severity: Minor
Found in rasa/core/policies/ensemble.py - About 3 hrs to fix

    Function from_dict has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
    Open

        def from_dict(cls, dictionary: Dict[Text, Any]) -> List[Policy]:
            policies = dictionary.get('policies') or dictionary.get('policy')
            if policies is None:
                raise InvalidPolicyConfig("You didn't define any policies. "
                                          "Please define them under 'policies:' "
    Severity: Minor
    Found in rasa/core/policies/ensemble.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 probabilities_using_best_policy has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
    Open

        def probabilities_using_best_policy(self,
                                            tracker: DialogueStateTracker,
                                            domain: Domain
                                            ) -> Tuple[List[float], Text]:
            result = None
    Severity: Minor
    Found in rasa/core/policies/ensemble.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 _training_events_from_trackers has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        def _training_events_from_trackers(training_trackers):
            events_metadata = defaultdict(set)
    
            for t in training_trackers:
                tracker = t.init_copy()
    Severity: Minor
    Found in rasa/core/policies/ensemble.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