source: java/ecj/framsticks/frams_coevolution3.params @ 61

Last change on this file since 61 was 61, checked in by mszubert, 14 years ago

Parsing 2-genotype-evaluation results.
Parameters file updated.

File size: 3.0 KB
Line 
1verbosity = 0
2
3breedthreads  = 1
4evalthreads   = 1
5seed.0        = 4357
6
7pop     = ec.Population
8state   = ec.simple.SimpleEvolutionState
9init    = ec.simple.SimpleInitializer
10finish  = ec.simple.SimpleFinisher
11breed   = ec.simple.SimpleBreeder
12stat    = ec.simple.SimpleStatistics
13exch    = ec.simple.SimpleExchanger
14eval    = cecj.eval.SimpleCoevolutionaryEvaluator
15
16generations           = 200
17quit-on-run-complete  = true
18checkpoint            = false
19prefix                = ec
20checkpoint-modulo     = 1
21
22pop.subpops     = 2
23pop.subpop.0    = ec.Subpopulation
24pop.subpop.1    = ec.Subpopulation
25
26pop.subpop.0.size = 8
27pop.subpop.1.size = 8
28pop.subpop.0.duplicate-retries  = 0
29pop.subpop.1.duplicate-retries  = 0
30
31pop.subpop.0.species            = framsticks.FramsticksSpecies
32pop.subpop.0.species.ind        = framsticks.FramsticksIndividual
33pop.subpop.0.species.fitness    = ec.simple.SimpleFitness
34pop.subpop.0.species.crossover-prob = 1.0
35pop.subpop.0.species.mutation-prob  = 0.1
36pop.subpop.0.species.ind.init-type  = 0
37
38pop.subpop.1.species            = framsticks.FramsticksSpecies
39pop.subpop.1.species.ind        = framsticks.FramsticksIndividual
40pop.subpop.1.species.fitness    = ec.simple.SimpleFitness
41pop.subpop.1.species.crossover-prob = 1.0
42pop.subpop.1.species.mutation-prob  = 0.1
43pop.subpop.1.species.ind.init-type  = 1
44
45pop.subpop.0.species.pipe                   = framsticks.FramsticksMutationPipeline
46pop.subpop.0.species.pipe.source.0          = framsticks.FramsticksCrossoverPipeline
47pop.subpop.0.species.pipe.source.0.source.0 = ec.select.TournamentSelection
48pop.subpop.0.species.pipe.source.0.source.1 = ec.select.TournamentSelection
49
50pop.subpop.1.species.pipe                   = framsticks.FramsticksMutationPipeline
51pop.subpop.1.species.pipe.source.0          = framsticks.FramsticksCrossoverPipeline
52pop.subpop.1.species.pipe.source.0.source.0 = ec.select.TournamentSelection
53pop.subpop.1.species.pipe.source.0.source.1 = ec.select.TournamentSelection
54
55select.tournament.size = 2
56
57eval.problem                  = framsticks.FramsticksCoevolutionaryProblem
58eval.interaction-scheme       = cecj.interaction.LearnerTeacherInteractionScheme
59
60eval.interaction-scheme.subpop.0.role  = TEACHER
61eval.interaction-scheme.subpop.1.role  = LEARNER
62
63eval.subpop.0.sampling-method = cecj.sampling.AllSamplingMethod
64eval.subpop.0.fitness-method  = cecj.fitness.SimpleSumFitness
65eval.subpop.1.sampling-method = cecj.sampling.AllSamplingMethod
66eval.subpop.1.fitness-method  = cecj.fitness.SimpleSumFitness
67
68breed.elite.0 = 2
69breed.elite.1 = 2
70
71stat.file = $out.stat
72
73framsticks.debug = false
74framsticks.directory-path = C:/Users/mszubert/Framsticks31rc4/
75framsticks.scripts-output = C:/Users/mszubert/Framsticks31rc4/scripts_output/genosEval.txt
76framsticks.settings-file = C:/Users/mszubert/Framsticks31rc4/pursuit.sim
77framsticks.working-directory = C:/Users/mszubert/Framsticks31rc4/
78framsticks.expdef = pursuit
79framsticks.executable-cmd = frams -Q -e -s -icliutils.ini
80
Note: See TracBrowser for help on using the repository browser.