Important
The name of the gem is petri_dish_lab
, not petri_dish
.
Welcome to Petri Dish, a Ruby library designed to provide a flexible interface for implementing evolutionary algorithms. Petri Dish allows you to configure and run your own evolutionary algorithms by providing configurations for genetic material, fitness function, and other parameters. This library is aimed at experimenting with various configurations of evolutionary algorithms and is not meant for production.
Evolutionary algorithms are a class of optimization algorithms that are inspired by the process of natural evolution. They work by maintaining a population of candidate solutions for a specific problem and iteratively evolving that population by applying operations that mimic natural evolution, such as mutation, crossover (or recombination), and selection.
The high-level steps of an evolutionary algorithm are:
- Initialization: Begin with a population of randomly generated individuals.
- Evaluation: Compute the fitness of each individual in the population.
- Selection: Select individuals for reproduction based on their fitness.
- Crossover: Generate offspring by combining the traits of selected individuals.
- Mutation: Randomly alter some traits of the offspring.
- Replacement: Replace the current population with the offspring.
- Termination: If a termination condition is met (e.g., a solution of sufficient quality is found, or a maximum number of generations is reached), stop and return the best solution found. Otherwise, go back to step 2.
Petri Dish is built around a few key classes: Configuration
, Member
, Metadata
, and World
.
-
Configuration
: This class provides a way to configure the behavior of the evolutionary algorithm. It exposes various parameters likepopulation_size
,mutation_rate
, and several callback functions that can be used to customize the evolution process. -
Member
: This class represents an individual in the population. It has a set of genes and a fitness value, which is computed by a fitness function provided in the configuration. -
Metadata
: This class keeps track of the evolution process, like the number of generations that have passed and the highest fitness value found so far. Metadata isn't exposed publically. -
World
: This class is responsible for running the evolutionary algorithm. It takes a configuration and a population of members as input, and runs the evolution process recursively until a termination condition is met.
The Configuration
class in Petri Dish allows you to customize various aspects of the evolutionary algorithm. Here are the parameters you can set:
Parameter | Description | RBS Type Description |
---|---|---|
logger |
An object that responds to :info for logging purposes |
Logger |
population_size |
The number of individuals in the population | Integer |
mutation_rate |
The chance that a gene will change during mutation (between 0 and 1, inclusive) | Float |
elitism_rate |
The proportion of the population preserved through elitism (between 0 and 1, inclusive) | Float |
max_generations |
The maximum number of generations to run the evolution for | Integer |
parents_selection_function |
A function used to select parents for crossover | Proc[Array[Member], Array[Member]] |
crossover_function |
A function used to perform crossover between two parents | Proc[Array[Member], Member] |
mutation_function |
A function used to mutate the genes of an individual | Proc[Member, Member] |
fitness_function |
A function used to calculate the fitness of an individual | Proc[Member, Numeric] |
highest_fitness_callback |
A callback function invoked when a new highest fitness is found | nil | Proc[Member, void] |
max_generation_reached_callback |
A callback function invoked when the maximum number of generations is reached | nil | Proc[void, void] |
end_condition_function |
A function that determines whether the evolution process should stop premature of max_generations |
nil | Proc[Member, bool] |
generation_start_callback |
A callback function invoked at the start of each new generation | nil | Proc[Integer, void] |
end_condition_reached_callback |
A callback function invoked when the end condition is met. It is called with the Member which triggered the end_condition_function |
nil | Proc[Member, void] |
You can create a new Configuration
object by calling Configuration.configure
and providing a block:
configuration = PetriDish::Configuration.configure do |config|
config.logger = Logger.new($stdout)
config.population_size = 100
# ...cont
end
The Member
class in Petri Dish represents an individual in the population. Each member has a set of genes and a fitness value, which is calculated by a fitness function provided in the configuration. Here are the parameters and methods you can interact with:
-
Member#new(genes:, fitness_function:)
: This method is used to create a new member. It takes an array of genes and a fitness function as arguments. -
Member#genes
(Array[untyped]
): The genetic material of the individual, represented as an array. -
Configuration#fitness_function
: (Proc[Member, Float]
): The function used to calculate the fitness of the individual. It is provided during the initialization of the member. -
Member#fitness
: This method calls the provided fitness function. The resulting fitness value is cached after the first calculation and reused in subsequent calls.
Here's an example of how to create a new member:
member = PetriDish::Member.new(
genes: [1, 1, 0, 1, 0, 1],
fitness_function: ->(member) { member.genes.sum }
)
In this example, [1, 1, 0, 1, 0, 1]
is the genetic material for the member, and the lambda function is used to calculate the fitness of the member (in this example, we take the sum of the Array).
Modelling a meaningful fitness function is crucial as it provides a way to evaluate how good or "fit" an individual member of the population is in solving the problem at hand. The fitness function is a measure of quality or performance, and it guides the evolutionary algorithm in the search for optimal solutions.
Here are the necessary technical properties required when defining a fitness function for the Petri Dish framework:
-
Callable: The fitness function should be a callable object (for example, a lambda or a
Proc
). It should respond to#call
. -
Input: The fitness function should take a single argument, which is an instance of the
Member
class. This represents an individual member of the population whose fitness is to be evaluated. -
Output: The fitness function should return a numerical value that represents the fitness of the given member. This could be an
Integer
or aFloat
, depending on the precision required. Higher values should signify better fitness. -
Deterministic: Given the same
Member
, the fitness function should always return the same fitness score. This is because the fitness of a member may be evaluated multiple times during the evolutionary process, and inconsistent results could lead to unpredictable behavior. -
Discriminative: The fitness function should be able to discriminate between different members of the population. That is, members with different genes should have different fitness scores. If many members have the same fitness score, the evolutionary algorithm will have a harder time deciding which members are better.
-
Non-negative: The fitness function should ideally return non-negative values. This isn't a strict requirement, but having non-negative fitness values can make the algorithm easier to understand and debug.
Warning
The name of the gem is petri_dish_lab
.
The name of the repo is petri_dish
.
The name of the module is PetriDish
.
You can install petri_dish_lab
as a gem in your application. Add this line to your application's Gemfile:
gem 'petri_dish_lab'
And then execute:
bundle install
Or install it yourself as:
gem install petri_dish_lab
At the top of your Ruby file, require the petri_dish
module name:
require "petri_dish"
If you want to set up the petri_dish_lab
gem for development, follow these steps:
- Clone the repository:
git clone https://github.com/thomascountz/petri_dish.git
- Change into the
petri_dish
directory:
cd petri_dish
- Run the setup script:
bin/setup
This will install the necessary dependencies for development and testing.
After setting up, you can use the development console to experiment with the petri_dish
library:
bin/console
This will start an interactive Ruby session (IRB) with PetriDish
pre-loaded. You can use this console to experiment with PetriDish
, create PetriDish::Member
instances, run evolutionary algorithms, etc.
Remember to run your tests frequently during development to ensure everything is working as expected:
bundle exec rspec
If you add new code, remember to add corresponding tests and ensure all tests pass before committing your changes.
Several example problems are configured and solved in the /examples
directory.
- Lazy Dog - Evolving a string to match "the quick brown fox jumped over the lazy white dog"
- Traveling Salesperson - Finding the shortest route that visits each city exactly once
- Low-Poly Image Reconstruction - Generating a low-poly representation of an image
- Genetic Algorithms Explained By Example - Youtube
- Genetic Algorithms for Autonomous Robot Navigation - Paper
- Nature of Code, Chapter 9 - The Evolution of Code - Book
- Weighted Random Sampling in Ruby - Gist
- Tail Call Optimization in Ruby - Blog
- Neural network and genetic algorithm based global path planning in a static environment - Paper
- Traveling Salesman Problem using Genetic Algorithm - Blog
- A KNOWLEDGE-BASED GENETIC ALGORITHM FOR PATH PLANNING OF MOBILE ROBOTS - Thesis