Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKBJavaConnector/ECJClient/src/ec/coevolve/README @ 12912

Last change on this file since 12912 was 6152, checked in by bfarka, 13 years ago

added ecj and custom statistics to communicate with the okb services #1441

File size: 5.5 KB
Line 
1This package contains classes for doing certain kinds of coevolution:
2
3  - 1-population competitive coevolution
4  - 2-population parallel/parallel-previous competitive coevolution
5  - N-population parallel/parallel-previous cooperative coevolution
6
7ECJ does not presently support N-population sequential cooperative coevolution,
8but there's no reason it couldn't -- it'd just need a special Breeder and one
9or two minor tweaks to the MultiPopCoevolutionaryEvaluator.
10
11"Parallel" methods are ones in which individuals are tested against other
12individuals from the current generation.
13
14"Sequential" methods are ones in which each subpopulation in turn is tested
15against other individuals, then undergoes breeding, before other subpopulations
16are tested against it.
17
18"Parallel-previous" is the term we use to describe coevolutionary methods in
19which individuals are tested against the *previous* generations' individuals
20rather than the current ones.
21
22Coevolution is largely defined by the form of evaluation, so this package
23contains mostly Evaluators of different kinds.  The coevolution system places
24each coevolved "population" in a separate ECJ subpopulation.  Fitness
25assessment in coevolution typically consists of three parts:
26
27  1. Preprocess the full population (all subpopulations) in some way
28  2. Perform various tests on groups of individuals
29  3. Postprocess the full population, which gathers all the test
30     results and assesses fitness on the individuals.
31
32These three elements are embodied in a Problem form called GroupedProblemForm,
33which you are required to use.  It shouldn't be surprising to you that
34your Problem subclass will need to understand what kind of coevolution it's
35being involved in and assess fitness appropriately.  The GroupedProblemForm
36class is:
37 
38  ec.coevolve.GroupedProblemForm
39
40The evaluate(...) method in GroupedProblemForm is a bit unusual.  You are
41given an array of individuals to test together -- the particular subpopulations
42from which the individuals are drawn depends on the coevolution method.  The
43subpopulations in question are also provided to you as an array.  You are also
44provided with an array of booleans indicating WHICH individuals are supposed to
45have their fitnesses updated each time.  Last, you're given a boolean telling
46you whether fitnesses should be (temporarily) updated to reflect victories
47won rather than actual scores (as in the case of Single Elimination Tournament).
48
49
50
51
521 POPULATION COMPETITIVE COEVOLUTION
53
54Here members of a single subpopulation are tested against one another in some
55fashion, often multiple times with multiple "testing partners", before their
56fitness is assessed.  ECJ's implementation can be found in
57
58  ec.coevolve.CompetitiveEvaluator
59
60This evaluator has a number of ways that individuals can be tested.  First,
61there is the issue of competition style:
62
63  - Single Elimination Tournament.  Individuals are put into a
64    single elimination tournament, and "winners" go on to compete
65    further in the bracket.  It's common for single elimination
66    tournament to be defined such that the degree to which an individual
67    rises in the tournament is defined as his fitness.  You'll need
68    to set a temporary fitness of individuals immediately during
69    evaluate(...), rather than waiting for Step 3 above, since this
70    "fitness" will determine which individual won a competition in the
71    tournament.  Afterwards in postprocessing you can then set the final
72    fitness of the individual.  Single Elimination Tournament requires
73    that your subpopulation be a power of 2 in size.
74
75  - Round Robin.  Every individual is tested exactly once against every
76    other individual in the subpopulation.
77
78  - K Random Opponents (One Way).  Each individual is tested against
79    exactly K other individuals, chosen at random.
80
81  - K Random Opponents (Two Ways).  Each individual is tested against
82    AT LEAST K other individuals, chosen at random. Here the other
83    individuals are expected to have their fitnesses updated as well.
84    In some cases an individual may have one or two more tests than
85    the others.
86
87
88
89
90
912 POPULATION PARALLEL/PARALLEL-PREVIOUS COMPETITIVE COEVOLUTION
92
93Here two subpopulations are pit against one another.  Members from one
94subpopulation are tested against members of the other subpopulation.  ECJ's
95implementation is found in
96
97  ec.coevolve.MultiPopCoevolutionaryEvaluator
98
99Each individual in a subpopulation will be tested against certain individuals
100in the other subpopulation.  This class allows you to specify how many of three
101kinds of individuals to test against:
102
103  1. The fittest individuals in the other subpopulation from the
104     previous generation
105 
106  2. Other individuals from the previous generation, selected via
107     a selection method which you specify.
108
109  3. Random individuals from the current generation
110
111To implement 2-population methods, you'll need to set the number of
112subpopulations to 2.  You are responsible for computing the fitness of
113individuals in competitive form.
114
115
116
117
118N POPULATION PARALLEL/PARALLEL-PREVIOUS COOPERATIVE COEVOLUTION
119
120Here N populations are tested in collaboration with one another.  Members from
121one subpopulation are tested by grouping them with a member each from the other
122subpopulations and assessing their joint fitness.  ECJ's implementation is
123again
124
125  ec.coevolve.MutltiPopCoevolutionaryEvaluator
126
127See above for more information about how this class works.  To implement
128n-population methods, you'll need to set the number of subpopulations to N
129as appropriate.  You are responsible for computing the fitness of individuals
130in some cooperative form.
131
132
Note: See TracBrowser for help on using the repository browser.