Class Slave
Slave is the main entry point for a slave evaluation process. The slave works with a master process, receiving individuals from the master, evaluating them, and reporting the results back to the master, thus enabling distributed evolution.
Slave replicates most of the functionality of the ec.Evolve class, for example in terms of parameters and checkpointing. This is mostly because it needs to bootstrap and set up the EvolutionState in much the same way that ec.Evolve does. Additionally, depending on settings below, the Slave may act like a mini-evolver on the individuals it receives from the master.
Like ec.Evolve, Slave is run with like this:
java ec.eval.Slave -file parameter_file [-p parameter=value]*
This starts a new slave, using the parameter file parameter_file. The user can provide optional overriding parameters on the command-line with the -p option.
Slaves need to know some things in order to run: the master's IP address and socket port number, whether to do compression, and whether or not to return individuals or just fitnesses. Unfortunately, Sun's CompressedInputStream/CompressedOutputStream is broken (it doesn't allow partial flushes, which is critical for doing compressed network streams). In order to do compression, you need to download the JZLIB library from the ECJ website or from http://www.jcraft.com/jzlib/ . ECJ will detect and use it automatically.
Slaves presently always run in single-threaded mode and receive their random number generator seed from the master. Thus they ignore any seed parameters given to them.
Slaves run in one of three modes:
- "Regular" mode, which does a loop where it receives N individuals, evaluates them, and returns either the individuals or their new fitnesses.
- "Regular Coevolutionary" mode, which does a loop where it receives N individuals to assess together in a single coevolutionary evaluation, evaluates them, and returns either the individuals or their new fitnesses (or only some fitnesses if only some are requested).
- "Evolve" mode, which does a loop where it receives N individuals, evaluates them, and if there's some more time left, does a little evolution on those individuals as if they were a population, then when the time is up, the current individuals in the population are returned in lieu of the original individuals. In this second form, individuals MUST be returned, not fitnesses. This mode is not available if you're doing coevolution.
Parameters
| eval.slave-name String |
(the slave's name, only for debugging purposes. If not specified, the slave makes one up.) |
| eval.master.host String |
(the IP Address of the master.) |
| eval.master.port integer >= 1024 |
(the socket port number of the master.) |
| eval.compression bool = true or false (default) |
(should we use compressed streams in communicating with the master?) |
| eval.run-evolve bool = true or false (default) |
(should we immediately evaluate the individuals and return them (or their fitnesses), or if we have extra time (defined by eval.runtime), should we do a little evolution on our individuals first?) |
| eval.runtime integer > 0 |
(if eval.run-evolve is true, how long (in milliseconds wall-clock time) should we allow the individuals to evolve?) |
| eval.return-inds bool = true or false (default) |
(should we return whole individuals or (if false) just the fitnesses of the individuals? This must be TRUE if eval.run-evolve is true.) |
| eval.one-shot bool = true (default) or false |
(Should the slave quit when the master quits, or loop continuously in the background processing new masters?) |
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringThe argument indicating the class where the resource is relative to.static final StringThe argument indicating that we're starting fresh from a new parameter file.static final StringThe argument indicating that we're starting fresh from a parameter file stored in a jar file or as some resource.static booleanstatic final Stringstatic final Stringstatic final Stringstatic final Stringstatic final Stringstatic final Stringstatic final Stringstatic final Stringstatic final StringShould slave go into an infinite loop looking for new masters after the master has quit, or not?static final Stringstatic final StringShould slave run its own evolutionary process?static final StringTime to run evolution on the slaves in secondsstatic final Stringstatic final ThreadPoolstatic booleanstatic intstatic intMy unique slave number.static final intHow long we sleep in between attempts to connect to the master (in milliseconds).static final bytestatic final bytestatic final bytestatic final bytestatic final bytestatic final byte -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic voidevaluateGroupedProblemForm(EvolutionState state, boolean returnIndividuals, DataInputStream dataIn, DataOutputStream dataOut) static voidevaluateSimpleProblemForm(EvolutionState state, boolean returnIndividuals, DataInputStream dataIn, DataOutputStream dataOut, String[] args) static void
-
Field Details
-
P_EVALNODELAY
- See Also:
-
P_EVALSENDBUFER
- See Also:
-
P_EVALRECVBUFFER
- See Also:
-
P_EVALSLAVENAME
- See Also:
-
P_EVALMASTERHOST
- See Also:
-
P_EVALMASTERPORT
- See Also:
-
P_EVALCOMPRESSION
- See Also:
-
P_RETURNINDIVIDUALS
- See Also:
-
P_SILENT
- See Also:
-
P_MUZZLE
- See Also:
-
V_NOTHING
public static final byte V_NOTHING- See Also:
-
V_INDIVIDUAL
public static final byte V_INDIVIDUAL- See Also:
-
V_FITNESS
public static final byte V_FITNESS- See Also:
-
V_SHUTDOWN
public static final byte V_SHUTDOWN- See Also:
-
V_EVALUATESIMPLE
public static final byte V_EVALUATESIMPLE- See Also:
-
V_EVALUATEGROUPED
public static final byte V_EVALUATEGROUPED- See Also:
-
A_FROM
The argument indicating that we're starting fresh from a parameter file stored in a jar file or as some resource.- See Also:
-
A_AT
The argument indicating the class where the resource is relative to.- See Also:
-
A_FILE
The argument indicating that we're starting fresh from a new parameter file.- See Also:
-
P_RUNTIME
Time to run evolution on the slaves in seconds- See Also:
-
runTime
public static int runTime -
P_RUNEVOLVE
Should slave run its own evolutionary process?- See Also:
-
runEvolve
public static boolean runEvolve -
P_ONESHOT
Should slave go into an infinite loop looking for new masters after the master has quit, or not?- See Also:
-
oneShot
public static boolean oneShot -
SLEEP_TIME
public static final int SLEEP_TIMEHow long we sleep in between attempts to connect to the master (in milliseconds).- See Also:
-
pool
-
slaveNum
public static int slaveNumMy unique slave number. At present this is just used to define a unique name.
-
-
Constructor Details
-
Slave
public Slave()
-
-
Method Details
-
main
-
evaluateSimpleProblemForm
public static void evaluateSimpleProblemForm(EvolutionState state, boolean returnIndividuals, DataInputStream dataIn, DataOutputStream dataOut, String[] args) -
evaluateGroupedProblemForm
public static void evaluateGroupedProblemForm(EvolutionState state, boolean returnIndividuals, DataInputStream dataIn, DataOutputStream dataOut)
-