File base.py
has 350 lines of code (exceeds 250 allowed). Consider refactoring. Open
"""
The base dataset class.
"""
# Created by Wenjie Du <wenjay.du@gmail.com>
Function __init__
has a Cognitive Complexity of 24 (exceeds 5 allowed). Consider refactoring. Open
def __init__(
self,
data: Union[dict, str],
return_X_ori: bool,
return_X_pred: bool,
- Read upRead up
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 _check_array_input
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
def _check_array_input(
X: Union[np.ndarray, torch.Tensor],
X_ori: Optional[Union[np.ndarray, torch.Tensor]] = None,
X_pred: Optional[Union[np.ndarray, torch.Tensor]] = None,
y: Optional[Union[np.ndarray, torch.Tensor]] = None,
- Read upRead up
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 _get_data_sizes
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
def _get_data_sizes(self) -> Tuple[int, ...]:
"""Detect the data sample sizes in the dataset and return the numbers.
Returns
-------
- Read upRead up
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 5 arguments (exceeds 4 allowed). Consider refactoring. Open
def __init__(