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.

METEOR metric for machine translation

This short video describes METEOR, a metric for evaluating machine generated text. It is used to evaluate whether the candidate text generated by an ML model matches the reference text (that is supposed to be generated). Where is the METEOR metric used? Meteor metric was primarily used in the Machine Translation literature. Checkout our article…