-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Applying sampling method to sensitive features for fairness models #1085
Comments
Could you provide a minimal example with toy data and the version of the different model. |
This is highly possible that we need to modify our |
Here is a piece of code that demonstrates the issue. But I also think the |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I am currently trying to incorporate
imblearn
's sampling methods such asSMOTE()
andNearMiss()
withThresholdOptimizer
andAdversarialFairnessClassifier
fromfairlearn
. When I try to put all of them to run inimblearn.pipeline
(sampling then classifier), the sampling step fails, which I guess it does not know what to do with the sensitive features we passed as metadata. Right now, I am twisting the work-flow to work this around, but I would like to know if there is a configuration or a feature that can easily solve this.The text was updated successfully, but these errors were encountered: