Projects tagged ‘genetic’


[10 total ]
3

evolvotron

   
Primary Language: C++ Licensed as: GNU General Public License 2.0 or later

This is an interactive generative art application to evolve images/textures/patterns/animations through an iterative process of random mutation and user-selection driven evolution. This process is also often referred to as "evolutionary art" or ... [More] "genetic art". If you like lava lamps, and still think the Mandelbrot set is cool, this could be the software for you. [Less]

Metrics updated 12 Oct 08

2

Watchmaker Evolution Framework

 
Primary Language: XSL Transformation Licensed as: Apache License 2.0

Watchmaker is an extensible, high-performance, multi-threaded, object-oriented framework for implementing platform-independent evolutionary computation (genetic algorithms, etc.) in Java. The evolution engine operates on POJOs (Plain Old Java ... [More] Objects) and does not require that evolved objects extend a specific base class nor implement any particular interfaces. This decoupling of framework and application code is achieved via a clean, generics-enabled API and without the need for expensive runtime reflection. [Less]

Metrics updated about 15 hours ago

1

EO Evolutionary Computation Framework

 
Primary Language: C++ Licensed as: GNU Lesser General Public License 2.1

EO is a templates-based, ANSI-C++ compliant evolutionary computation library. It contains classes for almost any kind of evolutionary computation you might come up to - at least for the ones we could think of. It is component-based, so that if you ... [More] don't find the class you need in it, it is very easy to subclass existing abstract or concrete classes. [Less]

Metrics updated 12 Oct 08

0

Magic Garden

 
Licensed as: GNU General Public License 3.0

Magic Garden is an Artificial Plants Laboratory. Create L-System plants, modify them in real time, play in the world of fractals, just have fun.

0

gendi

 
Primary Language: Java Licensed as: GNU General Public License 2.0

GENetic Database Indexer

Metrics updated about 8 hours ago

0

sanyou

 
Primary Language: C# Licensed as: GNU Lesser General Public License 2.1

Copyright CUG. 2008

Metrics updated 14 Oct 08

0

pyevolve

 
Primary Language: Python Licensed as: GNU General Public License 2.0

PyevolveDescriptionThis project focus on development of a complete cross-platform (Windows, Linux) framework for Genetic Algorithms in pure python. The project is in active development, and I'm doing great efforts to release a good version and ... [More] documentation soon. Main features: Many selector algorithms like: Rank Selector Uniform Selector Roulette Wheel Selector Tournament Selector Pure python, you can use in any platform which runs python; Easy to use, easy for end-user; Simple to customize Create new representations, genetic operators; You can view the Tutorial - Christian S. Perone News 05/08/2008 Added documentation to the code; Created API Docs. 04/08/2008 I've created a Tutorial. 31/07/2008 Released Pyevolve 0.3 (changes in ChangeLogVersion03)! 29/06/2008 Good news, Pyevolve was figured in the "10 Must-Have Python Packages for Social Scientists" ! 25/01/2008 Released Pyevolve 0.2 (changes in ChangeLogVersion02)! Some code example (SimpleCodeExample)from pyevolve import G1DList from pyevolve import GSimpleGA from pyevolve import Selectors def eval_func(ind): score = 0.0 for x in range(0,len(ind)): if ind[x]==0: score += 0.1 return score # Genome instance genome = G1DList.G1DList(7) genome.setInitParams(rangemin=0, rangemax=6) # The evaluator function (objective function) genome.evaluator.set(eval_func) # Genetic Algorithm Instance ga = GSimpleGA.GSimpleGA(genome) ga.selector.set(Selectors.GRouletteWheel) # Do the evolution ga.evolve() # Best individual print ga.bestIndividual() And the result: - GenomeBase Evaluated: True Score: 0.70 Fitness: 0.70 Slot name: Evaluator (Count: 1) Name: eval_func Doc: No documentation ! Slot name: Initializator (Count: 1) Name: G1DListInitializatorInteger Doc: This is the init function !! Slot name: Mutator (Count: 1) Name: G1DListMutatorSwap Doc: No documentation ! Slot name: Crossover (Count: 1) Name: G1DListCrossoverSinglePoint Doc: No documentation ! - G1DList List size: 7 List: [0, 0, 0, 0, 0, 0, 0] [Less]

Metrics updated 14 Oct 08

0

uvu-ai

 
Primary Language: C# Licensed as: Apache License 2.0

This is a description

Metrics updated about 22 hours ago

0

genetic-star-fighter

 
Licensed as: GNU General Public License 3.0 or later

Genetic Star Fighter is a very simple game made in Ruby with the Gosu 2D game library. The game is just an excuse to visualize the undergoing process, which is the enemy's code improvement through evolution. Our goal is to learn about Evolutionary ... [More] Computing as we go, and not to make an impressive game (just an impressive AI). The mission is quite simple: you are a Star Fighter and your job is to push out of the map as many other Star Fighters as you can. [Less]

0

rubygp

 
Licensed as: GNU General Public License 3.0 or later

Trabajo de investigacion del la programacion genetica e implementacion de una maquina en Ruby capaz de resolver problemas de regresion numerica mediante dicho metodo. Practica de la asignatura Fundamentos de la Inteligencia Artificial en la ULPGC.