- Timestamp:
- 01/24/10 12:06:46 (15 years ago)
- Location:
- java/ecj/framsticks
- Files:
-
- 5 moved
Legend:
- Unmodified
- Added
- Removed
-
java/ecj/framsticks/frams.params
r54 r55 5 5 # The parameters that were laid out in Tutorial 1 (see the documentation) 6 6 7 verbosity 7 verbosity = 0 8 8 9 breedthreads 10 evalthreads 11 seed.0 9 breedthreads = 1 10 evalthreads = 1 11 seed.0 = 4357 12 12 13 state 13 state = ec.simple.SimpleEvolutionState 14 14 15 pop 16 init 17 finish 18 breed 19 eval 20 stat 21 exch 15 pop = ec.Population 16 init = ec.simple.SimpleInitializer 17 finish = ec.simple.SimpleFinisher 18 breed = ec.simple.SimpleBreeder 19 eval = ec.simple.SimpleEvaluator 20 stat = ec.simple.SimpleStatistics 21 exch = ec.simple.SimpleExchanger 22 22 23 generations 24 quit-on-run-complete 25 checkpoint 26 prefix 27 checkpoint-modulo 23 generations = 200 24 quit-on-run-complete = true 25 checkpoint = false 26 prefix = ec 27 checkpoint-modulo = 1 28 28 29 stat.file 29 stat.file = $out.stat 30 30 31 pop.subpops 32 pop.subpop.0 31 pop.subpops = 1 32 pop.subpop.0 = ec.Subpopulation 33 33 34 pop.subpop.0.size 35 pop.subpop.0.duplicate-retries 36 pop.subpop.0.species 34 pop.subpop.0.size = 15 35 pop.subpop.0.duplicate-retries = 0 36 pop.subpop.0.species = framsticks.FramsticksSpecies 37 37 38 pop.subpop.0.species.fitness 39 pop.subpop.0.species.ind 38 pop.subpop.0.species.fitness = ec.simple.SimpleFitness 39 pop.subpop.0.species.ind = framsticks.FramsticksIndividual 40 40 41 pop.subpop.0.species.crossover-prob 42 pop.subpop.0.species.mutation-prob 41 pop.subpop.0.species.crossover-prob = 1.0 42 pop.subpop.0.species.mutation-prob = 0.1 43 43 44 pop.subpop.0.species.pipe 45 pop.subpop.0.species.pipe.source.0 46 pop.subpop.0.species.pipe.source.0.source.0 47 pop.subpop.0.species.pipe.source.0.source.1 44 pop.subpop.0.species.pipe = framsticks.FramsticksMutationPipeline 45 pop.subpop.0.species.pipe.source.0 = framsticks.FramsticksCrossoverPipeline 46 pop.subpop.0.species.pipe.source.0.source.0 = ec.select.TournamentSelection 47 pop.subpop.0.species.pipe.source.0.source.1 = ec.select.TournamentSelection 48 48 49 select.tournament.size 49 select.tournament.size = 2 50 50 51 eval.problem 51 eval.problem = framsticks.FramsticksEvolutionProblem 52 52 53 53 breed.elite.0 = 2 -
java/ecj/framsticks/frams.slave.params
r54 r55 29 29 30 30 31 # The slave needs to know where the Master is. You need to 32 # change this. 31 # The slave needs to know where the Master is. You need to change this. 33 32 eval.master.host = 127.0.0.1 33 -
java/ecj/framsticks/frams_coevolution.params
r54 r55 1 verbosity 1 verbosity = 0 2 2 3 breedthreads 4 evalthreads 5 seed.0 3 breedthreads = 1 4 evalthreads = 1 5 seed.0 = 4357 6 6 7 pop 8 state 9 init 10 finish 11 breed 12 stat 13 exch 14 eval 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 = cecj.eval.TournamentCoevolutionaryEvaluator 15 15 16 generations 17 quit-on-run-complete 18 checkpoint 19 prefix 20 checkpoint-modulo 16 generations = 200 17 quit-on-run-complete = true 18 checkpoint = false 19 prefix = ec 20 checkpoint-modulo = 1 21 21 22 pop.subpops 23 pop.subpop.0 24 pop.subpop.0.size 25 pop.subpop.0.duplicate-retries 22 pop.subpops = 1 23 pop.subpop.0 = ec.Subpopulation 24 pop.subpop.0.size = 8 25 pop.subpop.0.duplicate-retries = 0 26 26 27 pop.subpop.0.species 28 pop.subpop.0.species.ind 29 pop.subpop.0.species.fitness 30 pop.subpop.0.species.crossover-prob 31 pop.subpop.0.species.mutation-prob 27 pop.subpop.0.species = framsticks.FramsticksSpecies 28 pop.subpop.0.species.ind = framsticks.FramsticksIndividual 29 pop.subpop.0.species.fitness = ec.simple.SimpleFitness 30 pop.subpop.0.species.crossover-prob = 1.0 31 pop.subpop.0.species.mutation-prob = 0.1 32 32 33 pop.subpop.0.species.pipe 34 pop.subpop.0.species.pipe.source.0 35 pop.subpop.0.species.pipe.source.0.source.0 36 pop.subpop.0.species.pipe.source.0.source.1 33 pop.subpop.0.species.pipe = framsticks.FramsticksMutationPipeline 34 pop.subpop.0.species.pipe.source.0 = framsticks.FramsticksCrossoverPipeline 35 pop.subpop.0.species.pipe.source.0.source.0 = ec.select.TournamentSelection 36 pop.subpop.0.species.pipe.source.0.source.1 = ec.select.TournamentSelection 37 37 38 select.tournament.size 38 select.tournament.size = 2 39 39 40 40 eval.problem = framsticks.FramsticksCoevolutionaryProblem … … 42 42 breed.elite.0 = 2 43 43 44 stat.file 44 stat.file = $out.stat 45 45 46 46 framsticks.directory-path = C:/Framsticks/ -
java/ecj/framsticks/frams_coevolution2.params
r54 r55 1 verbosity 1 verbosity = 0 2 2 3 breedthreads 4 evalthreads 5 seed.0 3 breedthreads = 1 4 evalthreads = 1 5 seed.0 = 4357 6 6 7 pop 8 state 9 init 10 finish 11 breed 12 stat 13 exch 14 eval 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 = cecj.eval.SimpleCoevolutionaryEvaluator 15 15 16 generations 17 quit-on-run-complete 18 checkpoint 19 prefix 20 checkpoint-modulo 16 generations = 200 17 quit-on-run-complete = true 18 checkpoint = false 19 prefix = ec 20 checkpoint-modulo = 1 21 21 22 pop.subpops 23 pop.subpop.0 24 pop.subpop.1 22 pop.subpops = 2 23 pop.subpop.0 = ec.Subpopulation 24 pop.subpop.1 = ec.Subpopulation 25 25 26 pop.subpop.0.size 27 pop.subpop.1.size 28 pop.subpop.0.duplicate-retries 29 pop.subpop.1.duplicate-retries 26 pop.subpop.0.size = 8 27 pop.subpop.1.size = 8 28 pop.subpop.0.duplicate-retries = 0 29 pop.subpop.1.duplicate-retries = 0 30 30 31 pop.subpop.0.species 32 pop.subpop.0.species.ind 33 pop.subpop.0.species.fitness 34 pop.subpop.0.species.crossover-prob 35 pop.subpop.0.species.mutation-prob 31 pop.subpop.0.species = framsticks.FramsticksSpecies 32 pop.subpop.0.species.ind = framsticks.FramsticksIndividual 33 pop.subpop.0.species.fitness = ec.simple.SimpleFitness 34 pop.subpop.0.species.crossover-prob = 1.0 35 pop.subpop.0.species.mutation-prob = 0.1 36 36 37 pop.subpop.1.species 38 pop.subpop.1.species.ind 39 pop.subpop.1.species.fitness 40 pop.subpop.1.species.crossover-prob 41 pop.subpop.1.species.mutation-prob 37 pop.subpop.1.species = framsticks.FramsticksSpecies 38 pop.subpop.1.species.ind = framsticks.FramsticksIndividual 39 pop.subpop.1.species.fitness = ec.simple.SimpleFitness 40 pop.subpop.1.species.crossover-prob = 1.0 41 pop.subpop.1.species.mutation-prob = 0.1 42 42 43 pop.subpop.0.species.pipe 44 pop.subpop.0.species.pipe.source.0 45 pop.subpop.0.species.pipe.source.0.source.0 46 pop.subpop.0.species.pipe.source.0.source.1 43 pop.subpop.0.species.pipe = framsticks.FramsticksMutationPipeline 44 pop.subpop.0.species.pipe.source.0 = framsticks.FramsticksCrossoverPipeline 45 pop.subpop.0.species.pipe.source.0.source.0 = ec.select.TournamentSelection 46 pop.subpop.0.species.pipe.source.0.source.1 = ec.select.TournamentSelection 47 47 48 pop.subpop.1.species.pipe 49 pop.subpop.1.species.pipe.source.0 48 pop.subpop.1.species.pipe = framsticks.FramsticksMutationPipeline 49 pop.subpop.1.species.pipe.source.0 = ec.select.FitProportionateSelection 50 50 51 select.tournament.size 51 select.tournament.size = 2 52 52 53 eval.problem 54 eval.interaction-scheme 55 eval.subpop.0.sampling-method 56 eval.subpop.0.fitness-method 57 eval.subpop.1.sampling-method 58 eval.subpop.1.fitness-method 53 eval.problem = framsticks.FramsticksCoevolutionaryProblem 54 eval.interaction-scheme = cecj.interaction.InterPopulationInteractionScheme 55 eval.subpop.0.sampling-method = cecj.sampling.AllSamplingMethod 56 eval.subpop.0.fitness-method = cecj.fitness.SimpleSumFitness 57 eval.subpop.1.sampling-method = cecj.sampling.AllSamplingMethod 58 eval.subpop.1.fitness-method = cecj.fitness.SimpleSumFitness 59 59 60 60 breed.elite.0 = 2 61 61 62 stat.file 62 stat.file = $out.stat 63 63 64 64 framsticks.directory-path = C:/Framsticks/ 65 65 framsticks.scripts-output = C:/Framsticks/scripts_output/genosEval.txt 66 framsticks.settings-file = C:/Framsticks/maze1.sim66 framsticks.settings-file = C:/Framsticks/maze1.sim 67 67 framsticks.working-directory = C:/Framsticks/ 68 68 framsticks.expdef = standard-eval
Note: See TracChangeset
for help on using the changeset viewer.