A genetic algorithm is an optimization heuristic that is inspired by the principles that drive natural evolution: mutation, recombination and selection. In comparison to traditional search methods such as hill-climbing, genetic algorithms have the ability to escape from local minima/maxima.
86
votes
36answers
13k views
What problems have you solved using genetic algorithms/genetic programming? [closed]
Genetic algorithms (GA) and genetic programming (GP) are interesting areas of research.
I'd like to know about specific problems you - the SO reader - have solved using GA/GP and what ...
36
votes
9answers
1k views
How should I Test a Genetic Algorithm
I have made a quite few genetic algorithms; they work (they find a reasonable solution quickly). But I have now discovered TDD. Is there a way to write a genetic algorithm (which relies heavily on ...
30
votes
12answers
4k views
cool project to use a genetic algorithm for?
I'm looking for a practical application to use a genetic algorithm for. Some things that have thought of are:
Website interface optimization
Vehicle optimization with a physics simulator
Genetic ...
27
votes
8answers
3k views
When to use Genetic Algorithms vs. when to use Neural Networks?
Is there a rule of thumb or set of examples to determine when to use Genetic Algorithms versus when to use Neural Networks to solve a problem?
I know there are cases in which you can have both ...
25
votes
10answers
10k views
Genetic Programming in C#
I've been looking for some good genetic programming examples for C#. Anyone knows of good online/book resources? Wonder if there is a C# library out there for Evolutionary/Genetic programming?
22
votes
3answers
365 views
Is there an efficient algorithm for segmentation of handwritten text?
I want to automatically divide an image of ancient handwritten text by lines (and by words in future).
The first obvious part is preprocessing the image...
I'm just using a simple digitization ...
21
votes
6answers
2k views
Have you ever used a genetic algorithm in real-world applications?
I was wondering how common it is to find genetic algorithm approaches in commercial code.
It always seemed to me that some kinds of schedulers could benefit from a GA engine, as a supplement to the ...
16
votes
11answers
2k views
Genetic algorithm resource
Lately I'm interested in a topic of genetic algorithms, but i couldn't find any good resource. If you know any good resource, book or a site i would appreciate it. I have solid knowledge of algorithms ...
14
votes
1answer
483 views
How can I pack ordered text into an arbitrary 2D polygon?
Problem
I am trying to find a solution to a variation on a classic 2D packing problem - something similar to this question.
Given an arbitrary polygon P, and a phrase W, I want to "pack" the letters ...
14
votes
5answers
440 views
Efficiency of crossover in genetic algorithms
I've implemented a number of genetic algorithms to solve a variety of a problems. However I'm still skeptical of the usefulness of crossover/recombination.
I usually first implement mutation before ...
14
votes
1answer
514 views
Evolutionary Algorithm for the Theo Jansen Walking Mechanism
There is a Dutch artist/engineer who created a very elaborate walking mechanism. The working principle can be seen here:
http://www.strandbeest.com/beests_leg.php
The curious part is that he used a ...
14
votes
4answers
2k views
Best Fit Scheduling Algorithm
I'm writing a scheduling program with a difficult programming problem. There are several events, each with multiple meeting times. I need to find an arrangement of meeting times such that each ...
14
votes
8answers
650 views
What are some impressive algorithms or software in the world of AI?
I have always loved the idea of AI and evolutionary algorithms. Unfortunately as we all know the field hasnt developed nearly as fast as expected in the early days.
What I am looking for are some ...
13
votes
1answer
400 views
Why is my genetic algorithm seemingly behaving randomly?
I'm attempting to evolve optimal strategies for the Iterated Prisoner's Dilemma using a basic genetic algorithm (Stochastic Universal Sampling, 1-point crossover, Canonical GA). I've implemented this ...
13
votes
4answers
796 views
How to implement the Gaussian mutation operator for a genetic algorithm in Java
I try to learn and implement a simple genetic algorithm library for my project. At this time, evolution, selection of population is ready, and I'm trying to implement a simple good mutation operator ...
10
votes
8answers
622 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 ...
9
votes
1answer
647 views
A Genetic Algorithm for Tic-Tac-Toe
So I was assigned the problem of writing a 5x5x5 tic-tac-toe player using a genetic algorithm. My approach was to start off with 3x3, get that working, and then extend to 5x5, and then to 5x5x5.
...
9
votes
4answers
2k views
Artificial Inteligence library in python
I was wondering if there are any python AI libraries similar to aima-python but for a more recent version of python... and how they are in comparison to aima-python.
I was particularly interested in ...
9
votes
6answers
5k views
Roulette Selection in Genetic Algorithms
Can anyone provide some pseudo code for a roulette selection function? How would I implement this:
I don't really understand how to read this math notation. I never took any probability or ...
8
votes
1answer
235 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 ...
8
votes
3answers
376 views
Hotel room optimization/sorting algorithm
Is there any well known room optimization/sorting algorithm for hotels ?
Problem is to redistribute rooms to maximize occupancy. Let's say I have 10 rooms, start date and end date for every ...
8
votes
7answers
712 views
Code generation by genetic algorithms
evolutionary programming seems to be great way to solve many optimization problems. Idea is very easy, implementation also does not make problems.
I was wondering last time is there any way to ...
8
votes
1answer
345 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 ...
8
votes
5answers
282 views
Initial Genetic Programming Parameters
I did a little GP (note:very little) work in college and have been playing around with it recently. My question is in regards to the intial run settings (population size, number of generations, ...
8
votes
1answer
365 views
Do you have genetic algorithm in production?
Is it good idea to use genetic algorithm in production?
If you are using it:
In what case?
What pros for selecting subj?
Can you easily add changes to algorithm?
8
votes
6answers
4k views
GA written in Java
I am attempting to write a Genetic Algorithm based on techniques I had picked up from the book "AI Techniques for Game Programmers" that uses a binary encoding and fitness proportionate selection ...
8
votes
7answers
2k views
Neural Net Optimize w/ Genetic Algorithm
Is a genetic algorithm the most efficient way to optimize the number of hidden nodes and the amount of training done on an artificial neural network?
I am coding neural networks using the NNToolbox ...
8
votes
6answers
1k views
What's the “Hello World!” of genetic algorithms good for?
I found this very cool C++ sample , literally the "Hello World!" of genetic algorithms.
I so decided to re-code the whole thing in C# and this is the result.
Now I am asking myself: is there any ...
7
votes
7answers
1k views
Which Java library/libraries for Genetic Algorithms?
I want to implement some simple genetic algorithms in Java.
So far I found only JGAP. Did somebody has some experience with that? And do you know other Java libraries for GA?
I do not want to write ...
7
votes
5answers
1k views
How to choose an integer linear programming solver?
I am newbie for integer linear programming.
I plan to use a integer linear programming solver to solve my combinatorial optimization problem.
I am more familiar with C++/object oriented programming on ...
7
votes
5answers
371 views
how to tackle this combinatorial algorithm problem
I have N people who must each take T exams. Each exam takes "some" time, e.g. 30 min (no such thing as finishing early). Exams must be performed in front of an examiner.
I need to schedule each ...
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
449 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
3answers
248 views
Ant Colony Optimization or Genetic Algorithm for percentage based problem
So I've recently become really fascinated with algorithms in general. And I recently implemented an ant colony optimization algorithm to solve the TSP (very fun obviously). Now I've been looking at ...
6
votes
5answers
269 views
Genetic Algorithm to Draw a Graph? Position assignment problem
I have an assignment problem at hand and am wondering how suitable it would be to apply local search techniques to reach a desirable solution (the search space is quite large).
I have a directed ...
6
votes
4answers
313 views
Genetic Programming in C?
I want to create an algorithm using genetic programming, based on symbolic regression.
I read some articles about that, some examples written on java or c++.
Maybe is more difficult because it ...
6
votes
2answers
130 views
Algorithm for computing timetable given restrictions
I'm considering a hypothetical problem, and looking for guidance on how to approach solving the problem, from an algorithmic point of view.
The Problem:
Consider a university. You have the ...
6
votes
3answers
265 views
Neural Network size for Animation system
I decided to go with a Neural Network in order to create behaviors for an animation engine that I have. The neural network takes in 3 vector3s and 1 Euler angle for every body part that I have. The ...
6
votes
2answers
342 views
How to develop game bot for unreal tournament?
The idea is to develop my own bot to test the game's behavioral rules, in my case I have set on using Unreal Tournament (1999 or 2004 version) as a proof of concept. Initially, I would like to test ...
6
votes
2answers
1k views
Difference between genetic and evolutionary algorithms?
Is there a difference between Genetic algorithms and evolutionary algorithms ? I have read multiple papers, talking about genetic or evolutionary algorithms, and while very similar, I think they may ...
6
votes
7answers
542 views
C# how to create functions that are interpreted at runtime
I'm making a Genetic Program, but I'm hitting a limitation with C# where I want to present new functions to the algorithm but I can't do it without recompiling the program. In essence I want the user ...
6
votes
5answers
756 views
Why does adding Crossover to my Genetic Algorithm gives me worse results?
I have implemented a Genetic Algorithm to solve the Traveling Salesman Problem (TSP). When I use only mutation, I find better solutions than when I add in crossover. I know that normal crossover ...
6
votes
3answers
407 views
What algorithm should I use for “genetic AI improvement”
First of all: This is not a question about how to make a program play Five in a Row. Been there, done that.
Introductory explanation
I have made a five-in-a-row-game as a framework to experiment ...
6
votes
3answers
4k views
Roulette-wheel selection in Genetic algorithm. Population needs to be sorted first?
In a genetic algorithm, when selecting members for crossover using roulette-wheel selection method, does the population first need to be sorted by fitness rank?
The possibilities seem to be:
sort ...
6
votes
6answers
2k views
5
votes
1answer
69 views
Using a genetic algorithm, how can I create offspring based off of two neural network structures?
I have two arrays of objects that describe the structure of a neural network, how can I combine them to produce an offspring that are realistic? The "chromosomes" would look something like this:
...
5
votes
3answers
125 views
Genetic algorithm on a knapsack-alike optiproblem
I have a optimzation problem i'm trying to solve using a genetic algorithm. Basically, there is a list of 10 bound real valued variables (-1 <= x <= 1), and I need to maximize some function of ...
5
votes
1answer
227 views
Genetic algorithms: fitness function for feature selection algorithm
I have data set n x m where there are n observations and each observation consists of m values for m attributes. Each observation has also observed result assigned to it. m is big, too big for my ...
5
votes
4answers
149 views
What is the best way to perform vector crossover in genetic algorithm?
I'm using genetic algorithm "to learn" the best parameters for a draughts/checkers AI. This parameters are stored in a vector of double.
[x1 x2 x3 x4 x5 x6 x7 x8 x9]
Actually I do the crossover ...
5
votes
2answers
501 views
Neural Network, Genetic algorithm as an Intrusion detection system
Hi I need some help on getting started with creating my first algorithm; I want to create a NN/Genetic Algorithm for use as an Intrusion detection system.
But I’m struggling with some points (never ...