Changeset 1283 for framspy/evolalg/base/experiment_abc.py
- Timestamp:
- 09/11/23 23:54:06 (14 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
framspy/evolalg/base/experiment_abc.py
r1194 r1283 4 4 import pickle 5 5 import time 6 import math 7 import random 6 8 from abc import ABC, abstractmethod 7 9 … … 43 45 ind_list.append(new_individual) 44 46 47 @staticmethod 48 def stochastic_round(value): # https://en.wikipedia.org/wiki/Rounding#Stochastic_rounding 49 # For example, value==2.1 should turn in most cases to int 2, rarely to int 3 50 lower = math.floor(value) # returns int 51 return lower + (random.random() < (value - lower)) 52 45 53 def make_new_population(self, individuals, prob_mut, prob_xov, tournament_size): 46 54 """'individuals' is the input population (a list of individuals). … … 48 56 Returns: a new population of size 'self.popsize' with prob_mut mutants, prob_xov offspring, and the remainder of clones.""" 49 57 58 # if (self.popsize * probability) below is not integer (e.g. popsize=50, prob_xov=0.333, expected number of crossovers = 50*0.333=16.65), stochastic_round() will ensure that you will get on average the expected number of crossovers per generation (e.g. 16.65: less often 16, more often 17). 59 expected_mut = self.stochastic_round(self.popsize * prob_mut) # or int(...) if you accept less mutants in some cases, see the comment above 60 expected_xov = self.stochastic_round(self.popsize * prob_xov) # or int(...) if you accept less crossovers in some cases, see the comment above 61 assert expected_mut + expected_xov <= self.popsize, "If probabilities of mutation (%g) and crossover (%g) added together exceed 1.0, then the population would grow every generation..." % (prob_mut, prob_xov) # can be triggered due to stochastic_round() if prob_mut+prob_xov is close to 1 and the expected number of mutants or crossovers is not integer; if this happens, adjust popsize, prob_mut and prob_xov accordingly. 62 50 63 newpop = [] 51 expected_mut = int(self.popsize * prob_mut)52 expected_xov = int(self.popsize * prob_xov)53 assert expected_mut + expected_xov <= self.popsize, "If probabilities of mutation (%g) and crossover (%g) added together exceed 1.0, then the population would grow every generation..." % (prob_mut, prob_xov)54 64 ris = RandomIndexSequence(len(individuals)) 55 65
Note: See TracChangeset
for help on using the changeset viewer.