Avoiding Feedback Loops in Recommender Systems

Recommender systems often suffer from exposure bias, where we have customer feedback from only those items we actually recommend to the customers. Since only the shown items can collect positive feedback, we end up showing the same items again and again to the customers. This phenomemon is often called bias-amplification or a feedback loop. This…

How to tune hyperparameters with Randomized Grid Search?

Randomized Grid Search is a variation of Grid Search that samples each parameter from a distribution. Conventional grid search evaluates the model at fixed combinations of parameter values and could be very inefficient as the complexity grows exponentially with the number of parameters. Randomized Grid search is a more efficient and an effective alternative.