Has anybody seen a GP implemented with online learning rather than the standard offline learning? I've done some stuff with genetic programs and I simply can't figure out what would be a good way to make the learning process online.

Please let me know if you have any ideas, seen any implementations, or have any references that I can look at.

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

Per the Wikipedia link, online learning "learns one instance at a time." The online/offline labels usually refer to how training data is feed to a supervised regression or classification algorithm. Since genetic programming is a heuristic search that uses an evaluation function to evaluate the fitness of its solutions, and not a training set with labels, those terms don't really apply.

If what you're asking is if the output of the GP algorithm (i.e. the best phenotype), can be used while it's still "searching" for better solutions, I see no reason why not, assuming it makes sense for your domain/application. Once the fitness of your GA/GP's population reaches a certain threshold, you can apply that solution to your application, and continue to run the GP, switching to a new solution when a better one becomes available.

One approach along this line is an algorithm called rtNEAT, which attempts to use a genetic algorithm to generate and update a neural network in real time.

link|improve this answer
Your answer is related to genetic algorithm (a meta-heuristic used in, e.g., combinatorial optimization problems). The OP's question relates to genetic programming--these are two very different things, and aren't even related in a genus-species way (ie, one doesn't include the other). – doug Apr 15 '10 at 4:43
The answer applies to both GA and GP. Yes, the two are different, but they operate using the same principal of genetic evolution. – Cerin Apr 16 '10 at 13:39
feedback

I found a few examples by doing a Google scholar search for online Genetic Programming.

An On-Line Method to Evolve Behavior and to Control a Miniature Robot in Real Time with Genetic Programming

It actually looks like they found a way to make GP modify the machine code of the robot's control system during actual activities - pretty cool!

Those same authors went on to produce more related work, such as this improvement:

Evolution of a world model for a miniature robot using genetic programming

Hopefully their work will be enough to get you started - I don't have enough experience with genetic programming to be able to give you any specific advice.

link|improve this answer
feedback

It actually looks like they found a way to make GP modify the machine code of the robot's control system during actual activities - pretty cool!

Yes, the department at Uni Dortmund was heavily into linear GP :-)

Direct execution of GP programs vs. interpreted code has some advantages, though in these days you'd probably rather want to go with dynamic languages such as Java, C# or Obj-C that allow you to write classes/methods at runtime while still you can still benefit from some runtime rather than run on the raw CPU.

The online-learning approach doesn't seem like anything absolutely novel or different from 'classic GP' to me. From my understanding it's just a case of extending the set of training/fitness/test cases during runtime?

Cheers, Jay

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.