Neha Patil (Editor)

Reward based selection

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

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.

Description

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 r a n k ( a ( g + 1 ) ) μ  if  a ( g + 1 ) Q ( g + 1 ) , where r a n k ( a ( g + 1 ) ) is the rank of newly inserted individual in the population of μ individuals. Rank can be computed using a well-known non-dominated sorting procedure.
  • 3. r ( g ) = a Q ( g + 1 ) Δ H ( a , Q ( g + 1 ) ) a Q ( g ) Δ H ( a , Q ( g ) ) , where Δ 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 ) = 1 2 k 1 ( n d o m k ( Q ( g + 1 ) ) Δ H ( a , n d o m k ( Q ( g + 1 ) ) ) n d o m k ( Q ( g ) ) Δ H ( a , n d o m k ( Q ( g ) ) ) )
  • Reward-based selection can quickly identify the most fruitful directions of search by maximizing the cumulative reward of individuals.

    References

    Reward-based selection Wikipedia