source: framspy/evolalg/run_numerical_example.py @ 1289

Last change on this file since 1289 was 1289, checked in by Maciej Komosinski, 4 months ago

fitness_set_negative_to_zero boolean (a.k.a. "only positive fitness", needed for novelty and niching diversity control) becomes a command-line flag instead of a hardcoded value

File size: 1.2 KB
Line 
1import numpy as np
2from .numerical_example.numerical_example import ExperimentNumerical
3from .structures.individual import Individual
4
5
6def main():
7    parsed_args = ExperimentNumerical.get_args_for_parser().parse_args()
8    Individual.fitness_set_negative_to_zero = parsed_args.fitness_set_negative_to_zero # setting the "static" field once
9    print("Argument values:", ", ".join(
10        ['%s=%s' % (arg, getattr(parsed_args, arg)) for arg in vars(parsed_args)]))
11
12    initialgenotype = np.array([100, 100, 100, 100])
13    experiment = ExperimentNumerical(
14        hof_size=parsed_args.hof_size,
15        popsize=parsed_args.popsize,
16        save_only_best=parsed_args.save_only_best)
17
18    hof, stats = experiment.evolve(hof_savefile=parsed_args.hof_savefile,
19                                   generations=parsed_args.generations,
20                                   initialgenotype=initialgenotype,
21                                   pmut=parsed_args.pmut,
22                                   pxov=parsed_args.pxov,
23                                   tournament_size=parsed_args.tournament)
24    print('Best individuals:')
25    for ind in hof:
26        print(ind.rawfitness, '\t-->\t', ind.genotype)
27
28
29if __name__ == "__main__":
30    main()
Note: See TracBrowser for help on using the repository browser.