You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
disparate_impact_remover.py only implements one method, fit_transform. But the documentation indicates that fit, fit_predict, predict, and transform should also be methods for this class. The class inherits these methods from the Transformer class, however, they are not implemented in that class, either.
Either the documentation should be updated, or the methods should be implemented. I suspect the latter, because fit_transform would only be appropriate to run on training data. For test/validation data, there should be a transform function available.
The text was updated successfully, but these errors were encountered:
disparate_impact_remover.py
only implements one method,fit_transform
. But the documentation indicates thatfit
,fit_predict
,predict
, andtransform
should also be methods for this class. The class inherits these methods from theTransformer
class, however, they are not implemented in that class, either.Either the documentation should be updated, or the methods should be implemented. I suspect the latter, because
fit_transform
would only be appropriate to run on training data. For test/validation data, there should be atransform
function available.The text was updated successfully, but these errors were encountered: