Post-Training Model Bias Mitigation

Learn how to debias ML models after training.

We'll cover the following

Now that we understand the risks of models and how damaging model bias can be, let’s identify some theoretical solutions. Approaches in this space come in two flavors: post-training and in-training.

Post-training methods are a way to normalize the behavior of the algorithm after training is done. These methods are typically not as powerful as in-training ones, but are a lot faster and easier to implement.

Randomization

Randomization is one of the simplest and most effective (but worst-performing) methods of debiasing an algorithm. The premise of this is to reduce the accuracy on the majority group to equalize performance with the minority group.

If a skin cancer detection algorithm has a 90% accuracy on the majority group and an 80% accuracy on the minority group, the simplest fix would be to randomize with some probability whenever the majority group is encountered. For example, if the majority class is the XX variable, randomize the assigned class 20% of the time.

Get hands-on with 1200+ tech skills courses.