Skip to content

Commit

Permalink
Remove verbose from SimpleImputer
Browse files Browse the repository at this point in the history
  • Loading branch information
viclafargue committed Mar 25, 2021
1 parent cc67116 commit 1c5f422
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions python/cuml/_thirdparty/sklearn/preprocessing/_imputation.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,21 +232,19 @@ class SimpleImputer(_BaseImputer,
@check_cupy8()
@_deprecate_positional_args
def __init__(self, *, missing_values=np.nan, strategy="mean",
fill_value=None, verbose=0, copy=True, add_indicator=False):
fill_value=None, copy=True, add_indicator=False):
super().__init__(
missing_values=missing_values,
add_indicator=add_indicator
)
self.strategy = strategy
self.fill_value = fill_value
self.verbose = verbose
self.copy = copy

def get_param_names(self):
return super().get_param_names() + [
"strategy",
"fill_value",
"verbose",
"copy"
]

Expand Down

0 comments on commit 1c5f422

Please sign in to comment.