updates
This commit is contained in:
parent
a5f923d697
commit
4bbed32f01
2
train.py
2
train.py
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue