pypots/forecasting/bttf/core.py
Function sample_factor_x_partial
has 9 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
def sample_factor_x_partial(tau_sparse_tensor, tau_ind, time_lags, U, V, X, A, Lambda_x, back_step):
Function BTTF_forecast
has 9 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
def BTTF_forecast(
Function _BTTF
has 8 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
def _BTTF(
Function sample_factor_x_partial
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
Open
def sample_factor_x_partial(tau_sparse_tensor, tau_ind, time_lags, U, V, X, A, Lambda_x, back_step):
"""Sampling T-by-R factor matrix X."""
dim3, rank = X.shape
tmax = np.max(time_lags)
- 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 _BTTF_partial
has 7 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
def _BTTF_partial(sparse_tensor, init, rank, time_lags, gibbs_iter, multi_step=1, gamma=10):
Function _BTTF
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
Open
def _BTTF(
dense_tensor,
sparse_tensor,
init,
rank,
- 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"