Skip to content

Commit

Permalink
Remove cache option from njit decorators in ImputeMultiVariate class
Browse files Browse the repository at this point in the history
  • Loading branch information
CyrilJl committed Dec 25, 2024
1 parent c0354fe commit d659149
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions timefiller/_multivariate_imputer.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def _prepare_data(cls, mask_nan, col_to_impute, subset_rows):
return index_predict, columns

@staticmethod
@njit(parallel=True, fastmath=True, boundscheck=False, cache=True)
@njit(parallel=True, fastmath=True, boundscheck=False)
def _split(X, index_predict, selected_rows, selected_cols, col_to_impute):
"""
Splits the data into training and prediction sets.
Expand Down Expand Up @@ -151,7 +151,7 @@ def _split(X, index_predict, selected_rows, selected_cols, col_to_impute):
return X_train, y_train, X_pred

@staticmethod
@njit(parallel=True, fastmath=True, boundscheck=False, cache=True)
@njit(parallel=True, fastmath=True, boundscheck=False)
def _subset(X, rows, columns):
"""
Extracts a subset from the array X.
Expand Down

0 comments on commit d659149

Please sign in to comment.