Closed haewon55 closed 2 years ago
drop_prot_attr doesn't work for the reductions method because of the bug in the predict_proba function.
drop_prot_attr
predict_proba
The line 148: X = X.drop(self.prot_attr)
X = X.drop(self.prot_attr)
should be updated to: X = X.drop(self.prot_attr, axis=1)
X = X.drop(self.prot_attr, axis=1)
Closed by #268
drop_prot_attr
doesn't work for the reductions method because of the bug in thepredict_proba
function.The line 148:
X = X.drop(self.prot_attr)
should be updated to:
X = X.drop(self.prot_attr, axis=1)