Posted by & filed under Uncategorized.

Practical advices derived from one’s experience would be perfect, books & papers are also good.


From the Area51 proposal.

 
Please correct the grammar in the title (the singular is “optimum”).
 

@Svante: tnx, done
 

Optimisation problems. Anything where an near-optimal solution is good enough and where an appropriate fitness function can be formulated.

 
It could be worth adding that the problem should be impractical/impossible to solve exactly.
 

@John Good point.
 

(+1): For me, optimization via GA is always the last step (or when I do not have any other idea)
 

Basically, search and optimisation. A brief overview is at the wikipedia page

 

Life is using them for about 4 billion years with very interesting results.

mbq
 
Though they aren’t too precise (internet trolls, stupid politicians…) ^^
 

But nature is working, see http://darwinawards.com/
 

@Tim well, not all solutions present in GA population are optimal.
mbq
 

Drawing the mona lisa

 

Hi there!

Two simple and clear examples:

  • Timetable: It was used to build the timetable of BCN’92 Olympic Games. If there is a change, you can have some new solution in short time.

  • Route: It can be used to improve the planning on a transport company. Imagine a company with 30 lorries in which the delivery route changes every day. Having the packets for tomorrow, they will put their specific GA to work at night so in the morning they will have a sub-optimal solution (in terms of distance, area, packet type or whatever they choose).

The good thing is that GA will give you a sub-optimal solution in a short time (seconds to hours, depending on the problem hardness) and every new iteration is a better one, so you stop it when you need it.

Regards, Eric.

 

Training neural networks for example.

Google has quite a lot of results for this: http://lmgtfy.com/?q=training+neural+networks+with+genetic+algorithms

And I’ve actually used a .NET (also a Java version) library for doing just this: http://www.heatonresearch.com/encog

(They have a really nice demonstration on this by the way (look for the folder named “Chapter06GeneticTSP”). It solves the travelling salesman problem using a feed-forward neural network that is being trained by a genetic algorithm.)

 
Can you explain how can GA be used to train NN? Im not saying it can be done, I just need some comments on this.
 

No problem. I added a bit more info.
 

I’m using GAs for model fitting, which is in some sense an optimization problem. Any problem that..

  • .. cannot be stated in closed form..
  • .. is not (at least once) continuously differentiable..
  • .. is highly non-linear..

..is a good candidate for GAs.

The real trick is to come up with a good data representation and to tweak the genetic operators for fast convergence.

There are also a class of problems where GAs definitely is not a good choice:

  • High-dimensional problems, which usually correlates with long chromosome length. Anything over 100 bit chromosome length, and you’re probably pushing it even as it is. Finding a good solution is mostly blind luck than real effort on your part.
  • Anything that is readily solved by a modern gradient-based method. For almost anything that can be represent in closed form and differentiated, a tried-and-true MMA, BFGS or SLP (depending on circumstances) would work like a charm.
 

NASA has ‘evolved’ the design of an antenna.

http://ti.arc.nasa.gov/projects/esg/research/antenna.htm

Loy
 

This post is an archive the the defunct StackExchange Artificial Intelligence. Unfortunately there no original URL to the site nor author page to link to. There is a link to the author’s site if it was listed in the profile. This post is licensed under the CC-Wiki License.

Leave a Reply

  • (will not be published)