[1289] | 1 | import numpy as np
|
---|
| 2 | from .numerical_example.numerical_islands_example import ExperimentNumericalIslands
|
---|
| 3 | from .structures.individual import Individual
|
---|
[1190] | 4 |
|
---|
| 5 |
|
---|
| 6 | def main():
|
---|
| 7 | parsed_args = ExperimentNumericalIslands.get_args_for_parser().parse_args()
|
---|
[1289] | 8 | Individual.fitness_set_negative_to_zero = parsed_args.fitness_set_negative_to_zero # setting the "static" field once
|
---|
[1190] | 9 | print("Argument values:", ", ".join(
|
---|
| 10 | ['%s=%s' % (arg, getattr(parsed_args, arg)) for arg in vars(parsed_args)]))
|
---|
| 11 |
|
---|
[1289] | 12 | initialgenotype = np.array([100, 100, 100, 100])
|
---|
[1190] | 13 | experiment = ExperimentNumericalIslands(
|
---|
| 14 | hof_size=parsed_args.hof_size,
|
---|
| 15 | popsize=parsed_args.popsize,
|
---|
| 16 | migration_interval=parsed_args.generations_migration,
|
---|
| 17 | number_of_populations=parsed_args.islands,
|
---|
| 18 | save_only_best=parsed_args.save_only_best)
|
---|
| 19 |
|
---|
| 20 | hof, stats = experiment.evolve(hof_savefile=parsed_args.hof_savefile,
|
---|
| 21 | generations=parsed_args.generations,
|
---|
| 22 | initialgenotype=initialgenotype,
|
---|
| 23 | pmut=parsed_args.pmut,
|
---|
| 24 | pxov=parsed_args.pxov,
|
---|
| 25 | tournament_size=parsed_args.tournament)
|
---|
[1289] | 26 | print('Best individuals:')
|
---|
[1190] | 27 | for ind in hof:
|
---|
[1293] | 28 | print(ind.rawfitness, '\t<--\t', ind.genotype)
|
---|
[1190] | 29 |
|
---|
| 30 |
|
---|
| 31 | if __name__ == "__main__":
|
---|
| 32 | main()
|
---|