Re: ANN: pygene - genetic algorithms package

2016-08-22 Thread saeed . fazayeli
On Tuesday, December 6, 2005 at 11:10:56 AM UTC+3:30, aum wrote: > Hi all, > > I looked at a few genetic algorithms/genetic programming packages for > Python, and found them somewhat convoluted, complicated and > counter-intuitive to use. > > So I've written a genetic

Re: genetic algorithms in Python?

2009-04-08 Thread Esmail
Terry Reedy wrote: Esmail wrote: Hello, Anyone using Python for coding up genetic algorithms? If so, would you share your favorite modules/libraries/tools? Search 'Python genetic algorithm' on Google or elsewhere. Hi Terry, I did that first, and I came up with a number of

Re: genetic algorithms in Python??

2009-04-08 Thread Esmail
R. David Murray wrote: Esmail wrote: Hello Mohammed, Yes, that would great. While I am comfortable with GAs, I'm still rather inexperienced with Python so seeing some implementation examples would be very useful. A google for 'python genetic algorithms' turns up a number of i

Re: genetic algorithms in Python?

2009-04-08 Thread Terry Reedy
Esmail wrote: Hello, Anyone using Python for coding up genetic algorithms? If so, would you share your favorite modules/libraries/tools? Search 'Python genetic algorithm' on Google or elsewhere. -- http://mail.python.org/mailman/listinfo/python-list

Re: genetic algorithms in Python??

2009-04-08 Thread R. David Murray
Esmail wrote: > Hello Mohammed, > > Yes, that would great. While I am comfortable with GAs, > I'm still rather inexperienced with Python so seeing some > implementation examples would be very useful. A google for 'python genetic algorithms' turns up a numbe

Re: genetic algorithms in Python??

2009-04-08 Thread Esmail
Hello Mohammed, Yes, that would great. While I am comfortable with GAs, I'm still rather inexperienced with Python so seeing some implementation examples would be very useful. Thanks, Esmail -- Date: Wed, 8 Apr 2009 17:08:48 +0200 Subject: Re: genetic algorithms in Python? From: me

Re: genetic algorithms in Python?

2009-04-08 Thread Mohammed Mediani
, 2009 at 3:25 PM, Esmail wrote: > Hello, > > Anyone using Python for coding up genetic algorithms? If > so, would you share your favorite modules/libraries/tools? > > Thanks, > Esmail > > -- > http://mail.python.org/mailman/listinfo/python-list > -- http://mail.python.org/mailman/listinfo/python-list

genetic algorithms in Python?

2009-04-08 Thread Esmail
Hello, Anyone using Python for coding up genetic algorithms? If so, would you share your favorite modules/libraries/tools? Thanks, Esmail -- http://mail.python.org/mailman/listinfo/python-list

Re: ANN: PyInkblot - Creating Rorschach Inkblots using Genetic Algorithms

2007-11-15 Thread placid
On Nov 16, 1:47 am, SamFeltus <[EMAIL PROTECTED]> wrote: > I suspect you could make it visually far more interesting if you > replaced the colored pixels with colorful images, and mapped the I'm already planning of using images instead of coloured blocks. But first i want to try using a gradient f

Re: ANN: PyInkblot - Creating Rorschach Inkblots using Genetic Algorithms

2007-11-15 Thread SamFeltus
I suspect you could make it visually far more interesting if you replaced the colored pixels with colorful images, and mapped the images on a grid using Flash. -- http://mail.python.org/mailman/listinfo/python-list

ANN: PyInkblot - Creating Rorschach Inkblots using Genetic Algorithms

2007-11-15 Thread placid
Hi All, I've been working on a 'toy' application for the past month or so called PyInkblot. Simply mirroring a random plotting of half of a grid onto the second half, you can create pictures that look 'organic' like Rorschach Inkblot's. PyInkblot uses pygene for the Genetic Algorithm backend and

Re: genetic algorithms package for python ?

2006-09-01 Thread placid
Thomas Samson wrote: > Xiao Jianfeng <[EMAIL PROTECTED]> writes: > > > Hi all, > > > > I am looking for a genetic algorithms package for Python. > > > > I have googled the web before posting and found some links. The link > > of pygene(http://ww

Re: genetic algorithms package for python ?

2006-08-31 Thread Thomas Samson
Xiao Jianfeng <[EMAIL PROTECTED]> writes: > Hi all, > > I am looking for a genetic algorithms package for Python. > > I have googled the web before posting and found some links. The link > of pygene(http://www.freenet.org.nz/python/pygene) cannot be opened. Strange, wor

Re: genetic algorithms package for python ?

2006-08-31 Thread Gary Herron
Xiao Jianfeng wrote: > Hi all, > > I am looking for a genetic algorithms package for Python. > > I have googled the web before posting and found some links. The link of > pygene(http://www.freenet.org.nz/python/pygene) cannot be opened. > > I also tried the recipe on AS

genetic algorithms package for python ?

2006-08-31 Thread Xiao Jianfeng
Hi all, I am looking for a genetic algorithms package for Python. I have googled the web before posting and found some links. The link of pygene(http://www.freenet.org.nz/python/pygene) cannot be opened. I also tried the recipe on ASPN, but it is too simple for my application, and the ga

Re: ANN: pygene - genetic algorithms package

2005-12-10 Thread eXt
Erik Max Francis wrote: > Unfortunately I can't give a precise date. If I have the time, a > polished working system with at least the basics should only take a week > or so to finish up. Unfortunately, I have a big deadline coming up in > my day job, so I'm probably not going to get much time

Re: ANN: pygene - genetic algorithms package

2005-12-10 Thread Erik Max Francis
eXt wrote: > I'm really happy to see that someone is working on Python based GP > implementation :) I'm currently trying to get into GP world (I'm the GP > newbie you talked about :P) and, as I'm a Python programmer, I look > towards Python based solutions. Unfortunately there are no active Pyt

Re: ANN: pygene - genetic algorithms package

2005-12-10 Thread eXt
Erik Max Francis wrote: > Sure thing. Obviously I'll post an announcement here when it's ready. I'm really happy to see that someone is working on Python based GP implementation :) I'm currently trying to get into GP world (I'm the GP newbie you talked about :P) and, as I'm a Python programmer,

Re: ANN: pygene - genetic algorithms package

2005-12-08 Thread Erik Max Francis
malv wrote: > Thank you kindly, Erik. Sure thing. -- Erik Max Francis && [EMAIL PROTECTED] && http://www.alcyone.com/max/ San Jose, CA, USA && 37 20 N 121 53 W && AIM erikmaxfrancis It is only the poor who are forbidden to beg. -- Anatole France -- http://mail.python.org/mailman/listinfo

Re: ANN: pygene - genetic algorithms package

2005-12-08 Thread malv
Thank you kindly, Erik. malv -- http://mail.python.org/mailman/listinfo/python-list

Re: ANN: pygene - genetic algorithms package

2005-12-08 Thread Erik Max Francis
mmediately find the answer. No one answered your question, so I will: Neural networks and genetic algorithms/programming are not closely related. A neural network is a model comprising a network of artificial neurons, and signals propagate from inputs, through the neurons of the network (

Re: ANN: pygene - genetic algorithms package

2005-12-07 Thread Erik Max Francis
Peter Hansen wrote: > You're certainly correct there. The leap to GP is much farther than my > stuff is from GA. I'm curious what sort of heterogeneous data setup you had. > I agree, and I look forward to seeing Psi some time, if just to help me > learn more in the area. Thanks again for the

Re: ANN: pygene - genetic algorithms package

2005-12-07 Thread Peter Hansen
e it's probably more likely closer to genetic algorithms. You're certainly correct there. The leap to GP is much farther than my stuff is from GA. >... for many problems, it > seems that genetic programming has a greater ability to produce > solutions to much more complex prob

Re: ANN: pygene - genetic algorithms package

2005-12-07 Thread aum
On Tue, 06 Dec 2005 22:44:39 -0800, Erik Max Francis wrote: > Peter Hansen wrote: > >> Okay, good, I already knew all that then, except perhaps that key word >> "fixed". One thing I should say here is that pygene is a collection of inter-related classes for populations, organisms, gametes and g

Re: ANN: pygene - genetic algorithms package

2005-12-06 Thread Erik Max Francis
Peter Hansen wrote: > Okay, good, I already knew all that then, except perhaps that key word > "fixed". > > Perhaps I've long been using the wrong label, but I've been doing what > I've considered to be "genetic algorithms" and yet worki

Re: ANN: pygene - genetic algorithms package

2005-12-06 Thread Peter Hansen
een using the wrong label, but I've been doing what I've considered to be "genetic algorithms" and yet working with sometimes variable amounts of sometimes heterogeneous data. I've just considered it to be more sophisticated than the "coefficients in an equatio

Re: ANN: pygene - genetic algorithms package

2005-12-06 Thread Erik Max Francis
Peter Hansen wrote: > I've done just enough work in genetic algorithms (and a token amount in > genetic programming) to be perplexed by this comment. Are you > suggesting that genetic programming is somehow not related to genetic > algorithms? > > My understandin

Re: ANN: pygene - genetic algorithms package

2005-12-06 Thread Peter Hansen
aum wrote: > On Mon, 05 Dec 2005 23:45:30 -0800, Erik Max Francis wrote: >>I only scanned through the API documentation, but it looks like only >>genetic algorithms are supported, not full genetic programming. > > Correct. Organisms of a species have a fixed genome. I

Re: ANN: pygene - genetic algorithms package

2005-12-06 Thread Erik Max Francis
d in. You can't teach all things simultaneously; I'm not sure creating a genetic programming (or genetic algorithms) system that's useful to "newbies" (whatever that means) is even a useful goal in and of itself. -- Erik Max Francis && [EMAIL PROTECTED] &a

Re: ANN: pygene - genetic algorithms package

2005-12-06 Thread malv
How is your package different from a nn package? Is this an addon for genetic programming or does it include the standard nn components as well, such as backprop etc? Not being very familiar with genetic programming, forgive me my naive question, I could not immediately find the answer. Thank you,

Re: ANN: pygene - genetic algorithms package

2005-12-06 Thread aum
On Mon, 05 Dec 2005 23:45:30 -0800, Erik Max Francis wrote: > I only scanned through the API documentation, but it looks like only > genetic algorithms are supported, not full genetic programming. Correct. Organisms of a species have a fixed genome. > I've been planning on rele

Re: ANN: pygene - genetic algorithms package

2005-12-05 Thread Erik Max Francis
aum wrote: > I looked at a few genetic algorithms/genetic programming packages for > Python, and found them somewhat convoluted, complicated and > counter-intuitive to use. > > So I've written a genetic algorithms package which I hope will be more > approachable to be

ANN: pygene - genetic algorithms package

2005-12-05 Thread aum
Hi all, I looked at a few genetic algorithms/genetic programming packages for Python, and found them somewhat convoluted, complicated and counter-intuitive to use. So I've written a genetic algorithms package which I hope will be more approachable to beginners. The first release of pygene

genetic algorithms

2005-02-25 Thread Jelle Feringa / EZCT Architecture & Design Research
Could anyone recommend me a genetic algorithm package? So far I have found a few, such as GAS, pyGP, Genetic, and of course scipy.ga My problem is that most of the development of these packages seems to be stalled, or that in scipy.ga's case, the module seems huge and somewhat overly complicated.