Paramter n_samples in DefaultImputer's impute function is doing nothing
mmschlk opened this issue · 2 comments
mmschlk commented
The parameter n_samples in DefaultImputer's impute function is doing nothing. It needs to control for the number of calls.
rjagtani commented
Isn't nsamples redundant in this case? Because a default imputer will lead to the same imputation for each nsample since there is no randomization
mmschlk commented
yes this is why I just multiplied the prediction outcome n_sample times ... I thought it might be better to do this if some explainer / imputer tries to do this an expects a sequence with the length of n even though the values in the sequence are the same ...
I just encountered such a scenario where I tried to mix and match the imputers