Re: Genetic Algorithm in Clojure

2018-03-21 Thread Donato Cafarelli
Thank you! I'm using IntelliJ Idea to develop my Clojure code. How can I implement the Clojush library? Il giorno mercoledì 21 marzo 2018 08:58:09 UTC+1, Boris V. Schmid ha scritto: > > This is one of the most active genetic programming systems libraries in > clojure https://github.com/lspector

Re: Genetic Algorithm in Clojure

2018-03-21 Thread Boris V. Schmid
This is one of the most active genetic programming systems libraries in clojure https://github.com/lspector/Clojush But for an assignment, I would go with http://gigasquidsoftware.com/blog/2016/07/18/genetic-programming-with-clojure-dot-spec/ On Tuesday, March 20, 2018 at 11:17:49 AM UTC+1, Do

Re: Genetic Algorithm in Clojure

2018-03-20 Thread Jose Figueroa Martinez
Hello, There are many parts of the genetic algorithm that can be parallelized. The most common part is the evaluation of each individual. You can start with that. Take your population and calculate the fitness of every member in a parallel way. Clojure has many mechanisms to use like pmap, futu

Genetic Algorithm in Clojure

2018-03-20 Thread Donato Cafarelli
Hi everybody, I need help! I got a lab project assignment that involves the following goal: parallelize a genetic algorithm with clojure language. What I need is a good algorithm. Any suggestions? Thank you very much -- You received this message because you are subscribed to the Google Groups

Re: Dauphin: mona lisa genetic algorithm in clojure

2009-01-27 Thread Christian Vest Hansen
On Tue, Jan 27, 2009 at 8:43 AM, bOR_ wrote: > > According to one of the posts beneath the log, the issue has been > fixed in the latests svns. I have no clue what the technical problem > was in clojure's source. To my understanding, the technical problem was that Clojure used the same ClassLoad

Re: Dauphin: mona lisa genetic algorithm in clojure

2009-01-26 Thread bOR_
According to one of the posts beneath the log, the issue has been fixed in the latests svns. I have no clue what the technical problem was in clojure's source. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Clojure

Re: Dauphin: mona lisa genetic algorithm in clojure

2009-01-26 Thread Christopher
This is a great post. However, the author brings up an issue with the way that lambdas are handled by the JVM. According to the article, lambdas are not garbage collected and can therefore overrun the PermGen, a special place in the heap for storing anonymous classes, and as a result, the user mus

Dauphin: mona lisa genetic algorithm in clojure

2009-01-26 Thread bOR_
Hope this isn't a double-post, but here is a nice example of a rewrite of some reddit post on a genetic algorithm for generating the mona lisa in clojure by Yann N. Dauphin http://npcontemplation.blogspot.com/2009/01/clojure-genetic-mona-lisa-problem-in.html --~--~-~--~~~-