vote up 6 vote down star
9

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 practical application along the lines of generating a target string starting from a population of random strings?

EDIT: my buddy on twitter just tweeted that "is useful for transcription type things such as translation. Does not have to be Monkey's". I wish I had a clue.

flag

1  
sheesh, I gotta use GIT just to check out your project? What are we lowly subversion users to do? – Neil N Sep 9 at 21:22
can't make everyone happy (GIT is quite cool BTW) :) – JohnIdol Sep 10 at 9:38

5 Answers

vote up 11 vote down check

Is there any practical application along the lines of generating a target string starting from a population of random strings?

Sure. Imagine any scenario in which you know how to evaluate the fitness of a particular string, and in which the choices are discrete and constrained in some way:

  • Picking pronounceable names ("Xhjkxc" has low fitness; "Artekzo" has high fitness)
  • Trying out a series of chess moves
  • Guessing the combination to a safe, assuming you can tell how close you are to unlocking each tumbler
  • Picking phone numbers that evaluate to words (e.g. "843-2378" has high fitness because it spells "THE-BEST")
link|flag
I am not sure I get the "pronounceable" example – JohnIdol Mar 29 at 1:12
Say you want to find a pronounceable name starting from some random strings, and you have some way to evaluate how pronounceable each name is. Can you see how randomly permuting the strings until you reach something with high "pronounceability" (fitness) would be done with a GA? – John Feminella Mar 29 at 1:18
Yep, I get that - It all comes down to knowing the right fitness function. So in case of pronounceability it's gotta be related to consonants and vocals pairing or smt like that. – JohnIdol Mar 29 at 1:21
1  
That's about right. Often the hardest part of writing a GA is picking an appropriate fitness function. – John Feminella Mar 29 at 1:29
1  
You'd be surprised. After all, life is a pretty long shot, and here we are. ;) – John Feminella Mar 29 at 19:24
show 6 more comments
vote up 2 vote down

No. Each time you run the GA, you are giving it the eventual answer. This is great for showing how a GA works and to show how powerful it can be, but it does not have any purpose beyond that.

link|flag
I don't agree with this at all; you don't need to know what "the answer" is to run a GA. In fact, sometimes there is no answer -- as in my "pick a pronounceable name" example. GAs are especially good at this sort of thing. – John Feminella Mar 29 at 0:56
You do need to know how good a particular answer is (that's what the fitness function is for). But other than that, it's gravy. – John Feminella Mar 29 at 0:57
Yes, you do not always need to know the answer to run a GA. However, you do for this particular implementation. His question is not about a GA in general, it is about this specific implementation. – Kevin Crowell Mar 29 at 1:00
Right, I agree with Kevin. I've seen these kinds of GA examples. They're great for examples, but that's all, because you already know the answer. Where GA's make sense is where you don't know the answer, or where there is not "one answer" but rather improving degrees of utility. – Charlie Flowers Mar 29 at 5:42
(In a sense I agree with John too ... what's he's saying - I believe - is that GA's can be remarkably valuable, and the applications that get value out of GA's follow the same principles as this example). – Charlie Flowers Mar 29 at 5:44
show 1 more comment
vote up 0 vote down

I have used GA in 2 real life research problems.

One was a power optimization problem (maximize number of appliances turned on, meeting the available power constraint and service guarantee for each appliance)

Another was for radio network optimization, maximizing the coverage area given a fixed equipment budget

link|flag
vote up 1 vote down

You could write an EA that writes code in a dynamic language like IronPython with the goal of creating code that a) executes without crashing and b) analyzes the stock market and intelligently buys and sells stock.

That's a very simplistic take on what would be necessary, but it's possible. You would need a host that provides a lot of methods for the IronPython code (technical indicators, etc) and a database of ticks.

It would also be smart to not just generate any old random code, lest you format your own hard-drive. You need a sandbox, and you need to limit the namespaces that are accessable, and you would need to provide a time limit to avoid infinite loops. You could also provide symantic guidelines that allow it to choose appropriate approved keywords instead of just stringing random letters together -- this would greatly speed up evolution.

So, I was involved with a project that did everything but the EA. We had a satellite dish that got real-time stock ticks from the NASDAQ, a service for trading that had an API, and a primitive decision making "brain" that made decisions as the ticks came in.

Sadly, one of the partners flipped out, quit his job, forked the project (got his own dish, etc), and started trading with logic that wasn't ready. He lost a bunch of money. It turns out that for some people this type of project is only a step away from common gambling. But anyway, the project kind of fizzled out after that. Evolving the logic part is the missing link though. And I know there are people out there doing this type of thing.

link|flag
thanks for your contribution on this - definitely interesting and very powerful as a possible application, also nice anecdote :) - any interesting related resources? – JohnIdol Sep 8 at 20:24
Here's something interesting: stackoverflow.com/questions/131165/… – Brian MacKay Sep 9 at 18:57
That's just some help with EA's. Most of the articles out there on EA's are really pretentious (read: academic) considering how easy it really is to get started with them. – Brian MacKay Sep 9 at 18:59
vote up 0 vote down

GA has one main disadvantage, it usually works with genetic speed so using it in some serious time-dependant projects is quite risky.

link|flag

Your Answer

Get an OpenID
or

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