[44] | 1 | verbosity = 0
|
---|
| 2 |
|
---|
| 3 | breedthreads = 1
|
---|
| 4 | evalthreads = 1
|
---|
| 5 | seed.0 = 1987
|
---|
| 6 |
|
---|
| 7 | pop = ec.Population
|
---|
| 8 | state = ec.simple.SimpleEvolutionState
|
---|
| 9 | init = ec.simple.SimpleInitializer
|
---|
| 10 | finish = ec.simple.SimpleFinisher
|
---|
| 11 | breed = ec.simple.SimpleBreeder
|
---|
| 12 | stat = ec.simple.SimpleStatistics
|
---|
| 13 | exch = ec.simple.SimpleExchanger
|
---|
| 14 | eval = coevolution.eval.TDLImprovingEvaluator
|
---|
| 15 |
|
---|
| 16 | generations = 5000
|
---|
| 17 | checkpoint = false
|
---|
| 18 | prefix = ec
|
---|
| 19 | checkpoint-modulo = 1
|
---|
| 20 |
|
---|
| 21 | pop.subpops = 1
|
---|
| 22 | pop.subpop.0 = ec.Subpopulation
|
---|
| 23 | pop.subpop.0.size = 1
|
---|
| 24 | pop.subpop.0.duplicate-retries = 0
|
---|
| 25 |
|
---|
| 26 | pop.subpop.0.species = ec.vector.FloatVectorSpecies
|
---|
| 27 | pop.subpop.0.species.ind = ec.vector.DoubleVectorIndividual
|
---|
| 28 | pop.subpop.0.species.fitness = ec.simple.SimpleFitness
|
---|
| 29 | pop.subpop.0.species.genome-size = 64
|
---|
| 30 | pop.subpop.0.species.min-gene = -5
|
---|
| 31 | pop.subpop.0.species.max-gene = 5
|
---|
| 32 | pop.subpop.0.species.crossover-type = one
|
---|
| 33 | pop.subpop.0.species.mutation-prob = 0.00
|
---|
| 34 | pop.subpop.0.species.mutation-type = reset
|
---|
| 35 | pop.subpop.0.species.mutation-stdev = 0.25
|
---|
| 36 |
|
---|
| 37 | pop.subpop.0.species.pipe = ec.vector.breed.VectorMutationPipeline
|
---|
| 38 | pop.subpop.0.species.pipe.source.0 = ec.vector.breed.VectorCrossoverPipeline
|
---|
| 39 | pop.subpop.0.species.pipe.source.0.source.1 = ec.select.TournamentSelection
|
---|
| 40 | pop.subpop.0.species.pipe.source.0.source.1.size = 2
|
---|
| 41 | pop.subpop.0.species.pipe.source.0.source.0 = ec.select.TournamentSelection
|
---|
| 42 | pop.subpop.0.species.pipe.source.0.source.0.size = 2
|
---|
| 43 |
|
---|
| 44 | eval.problem = coevolution.app.othello.Othello
|
---|
| 45 | eval.inner-evaluator = coevolution.eval.SimpleCoevolutionaryEvaluator
|
---|
| 46 | eval.inner-evaluator.problem = coevolution.app.othello.Othello
|
---|
| 47 | eval.inner-evaluator.interaction-scheme = coevolution.interaction.IntraPopulationInteractionScheme
|
---|
| 48 | eval.inner-evaluator.subpop.0.sampling-method = coevolution.sampling.AllSamplingMethod
|
---|
| 49 | eval.inner-evaluator.subpop.0.fitness-method = coevolution.fitness.SimpleSumFitness
|
---|
| 50 |
|
---|
| 51 | eval.tdl-improver = coevolution.app.othello.OthelloTDLImprover
|
---|
| 52 | eval.tdl-improver.repeats = 100
|
---|
| 53 | eval.tdl-improver.randomness = 0.1
|
---|
| 54 | eval.tdl-improver.learning-rate = 0.01
|
---|
| 55 |
|
---|
| 56 | stat.file = $out.stat
|
---|
| 57 | stat.num-children = 1
|
---|
| 58 | stat.child.0 = coevolution.statistics.AverageObjectiveFitnessChartStatistics
|
---|
| 59 | stat.child.0.title = Average performance
|
---|
| 60 | stat.child.0.x-axis-label = generation
|
---|
| 61 | stat.child.0.y-axis-label = fitness
|
---|
| 62 |
|
---|
| 63 | stat.child.0.fitness-calc = coevolution.app.othello.OthelloRandomPlayer2
|
---|
| 64 | stat.child.0.fitness-calc.play-both = true
|
---|
| 65 | stat.child.0.fitness-calc.repeats = 50
|
---|
| 66 | stat.child.0.fitness-calc.evaluated-randomness = 0.1
|
---|