This commit is contained in:
Glenn Jocher 2019-12-27 08:10:05 -08:00
parent a5f923d697
commit 4bbed32f01
1 changed files with 1 additions and 1 deletions

View File

@ -471,7 +471,7 @@ if __name__ == '__main__':
if os.path.exists('evolve.txt'): # if evolve.txt exists: select best hyps and mutate if os.path.exists('evolve.txt'): # if evolve.txt exists: select best hyps and mutate
# Select parent(s) # Select parent(s)
x = np.loadtxt('evolve.txt', ndmin=2) x = np.loadtxt('evolve.txt', ndmin=2)
parent = 'single' # parent selection method: 'single' or 'weighted' parent = 'weighted' # parent selection method: 'single' or 'weighted'
if parent == 'single' or len(x) == 1: if parent == 'single' or len(x) == 1:
x = x[fitness(x).argmax()] x = x[fitness(x).argmax()]
elif parent == 'weighted': # weighted combination elif parent == 'weighted': # weighted combination