Giter Site home page Giter Site logo

Comments (2)

tdunning avatar tdunning commented on August 18, 2024 1

I previously built a recommendation system which approximated a bandit but which avoided actually estimating distributions. The intuition we had was that the ranked list produced by the recommender typically included some really good items but that these items might be deeply buried before the recommender had been trained enough to switch to exploitation. Because such buried items appeared on the second or later page of recommendations, very little information was ever gathered on them and the recommender would statically focus on exploiting relatively poor items.

Our approach was to reorder the results so that items near the top could be moved a bit and deeper items could be moved a lot. We did this by re-ordering by sorting on log(r) + ε where ε ~ N(0, k). The parameter k is set small to reduce exploration or large to increase it. In early systems, we set k globally, but it can also be set to something like 1/n where n is a composite measure of how much training we have on the top items in the list of recommended items.

The primary benefit of this approach is that it allows much of the benefit of more advanced true bandit approaches (CTR increase of >100% was common in music and video recommendation) but it could also be bolted on to any plausible recommendation engine.

from eugeneyan-comments.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.