Tagged Questions

13
votes
5answers
1k views

Genetic Programming library for Java

I'm looking for a good genetic programming library for JVM. (not genetic algorithm but genetic programming) I tried JGAP (jgap.sourceforge.net) and Watchmaker (watchmaker.uncommons.org). ...
10
votes
8answers
596 views

Implementing crossover in genetic programming

I'm writing a genetic programming (GP) system (in C but that's a minor detail). I've read a lot of the literature (Koza, Poli, Langdon, Banzhaf, Brameier, et al) but there are some implementation ...
8
votes
1answer
204 views

How to fix premature convergence in simple GA (Python)?

Yesterday i started exploring the genetic algorithms, and when i ended up with some basic theory, i tried to write simple GA on Python, that solves Diophantine equation. I'm new to Python and GAs, so ...
7
votes
1answer
314 views

Genetic Programming - Fitness functions

Let's say I have a set of training examples where A_i is an attribute and the outcome is binary (yes or no): A1, A2, A3, Outcome red dark ...
7
votes
8answers
1k views

Books on Genetic algorithms or AI in general [closed]

What books/tutorials do you recommend for learning Genetic algorithms, or AI in general? I'd prefer language agnostic.
7
votes
8answers
447 views

Evolutionary Algorithms: Optimal Repopulation Breakdowns

It's really all in the title, but here's a breakdown for anyone who is interested in Evolutionary Algorithms: In an EA, the basic premise is that you randomly generate a certain number of organisms ...
6
votes
4answers
133 views

What is the category of search techniques for automatic programming using artificial intelligence called?

I'm doing research on automatic programming techniques available in the literature but only those which use AI. The only such technique I can find is genetic programming. Are there any other ...
3
votes
3answers
291 views

Genetic Programming Online Learning

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 ...
2
votes
1answer
229 views

Genetic Programming with the Mandelbrot Set

I'm reading a chapter in this fascinating book about using genetic programming to interactively evolve images. Most of the function set is comprised of simple arithmetic and trig functions (which ...