The Explore vs. Exploit Dilemma
11–16 of 16 posts
Re: The Explore vs. Exploit Dilemma
#12A simplified heuristic[0] for this for those interested in personal applications: it works out that you should exploit the best opportunity you come across once you’ve explored about 37% of the search space. [0]: https://en.m.wikipedia.org/wiki/Secretary_problem
See "Cardinal payoff variant" in the Wikipedia page.
Re: The Explore vs. Exploit Dilemma
#13A simplified heuristic[0] for this for those interested in personal applications: it works out that you should exploit the best opportunity you come across once you’ve explored about 37% of the search space. [0]: https://en.m.wikipedia.org/wiki/Secretary_problem
With the caveat that this number is for situations where you cannot backtrack (choose a previously seen option that isn’t the current one). There is a great book Algorithms to Live by that goes over this explore/exploit problem and more. I recommend it.
Re: The Explore vs. Exploit Dilemma
#14Thanks for writing, a problem I struggle with. I think confidence in oneself impacts the decision. You seem to be highly employable, meaning you can err on the side of exploration. I’m less convinced about that for myself, which makes me anxious to keep exploring. Although I find it very difficult to resist that part of my nature!
Re: The Explore vs. Exploit Dilemma
#15See also Thompson sampling[+] for a different approach to multi-armed bandits that doesn't depend on explicitly distinguishing between explore-exploit. [+] https://en.wikipedia.org/wiki/Thompson_sampling
Re: The Explore vs. Exploit Dilemma
#16I've been using evolutionary techniques with Pareto front optimization to deal with this tradeoff. If two (or more) objectives are in direct conflict, but otherwise don't dominate one another, we simply take them all. Then, the problem becomes one of making sure you have enough resources to maintain the frontier across the generations. If you do have to collapse the frontier, you can use things like crowding score to…