Reference articles on history, science, culture and more
Encyclopedia

Reward-based selection

Reward-based selection is a technique used in evolutionary algorithms for selecting potentially useful solutions for recombination. The probability of being selected for an individual is proportional to the cumulative reward obtained by the individual. The cumulative reward can be computed as a sum of the individual reward and the reward inherited from parents.

01Description

Reward-based selection can be used within Multi-armed bandit framework for Multi-objective optimization to obtain a better approximation of the Pareto front.

The newborn a'^{(g+1)} and its parents receive a reward r^{(g)}, if a'^{(g+1)} was selected for new population Q^{(g+1)}, otherwise the reward is zero. Several reward definitions are possible:

  • 1. r^{(g)}=1, if the newborn individual a'^{(g+1)} was selected for new population Q^{(g+1)}.
  • 2. r^{(g)}=1-{\frac {rank(a'^{(g+1)})}{\mu }}{\mbox{ if }}a'^{(g+1)}\in Q^{(g+1)}, where rank(a'^{(g+1)}) is the rank of newly inserted individual in the population of \mu individuals. Rank can be computed using a well-known non-dominated sorting procedure.
  • 3. r^{(g)}=\sum _{a\in Q^{(g+1)}}\Delta {H}(a,Q^{(g+1)})-\sum _{a\in Q^{(g)}}\Delta {H}(a,Q^{(g)}), where \Delta {H}(a,Q^{(g)}) is the hypervolume indicator contribution of the individual a to the population Q^{(g)}. The reward r^{(g)}>0 if the newly inserted individual improves the quality of the population, which is measured as its hypervolume contribution in the objective space.
  • 4. A relaxation of the above reward, involving a rank-based penalization for points for k-th dominated Pareto front: r^{(g)}={\frac {1}{2^{k-1}}}\left(\sum _{ndom_{k}(Q^{(g+1)})}\Delta {H}(a,ndom_{k}(Q^{(g+1)}))-\sum _{ndom_{k}(Q^{(g)})}\Delta {H}(a,ndom_{k}(Q^{(g)}))\right)

Reward-based selection can quickly identify the most fruitful directions of search by maximizing the cumulative reward of individuals.

Watch videos about Reward-based selectionExplainers and documentaries on YouTube (opens in a new tab)

Sources and credits

This article is adapted from the Wikipedia article Reward-based selection, written by its contributors and licensed under CC BY-SA 4.0. Fathomly has changed the layout, removed citation markers, navigation and maintenance notices, and adjusted punctuation. This adapted version is shared under the same license. For references, see the original article.

Fathomly is not affiliated with or endorsed by the Wikimedia Foundation. Spotted a problem? Tell us.