Cultural algorithm

Cultural algorithms (CA) are a branch of evolutionary computation where there is a knowledge component that is called the belief space in addition to the population component. In this sense, cultural algorithms can be seen as an extension to a conventional genetic algorithm. Cultural algorithms were introduced by Reynolds (see references).
01Belief space
The belief space of a cultural algorithm is divided into distinct categories. These categories represent different domains of knowledge that the population has of the search space.
The belief space is updated after each iteration by the best individuals of the population. The best individuals can be selected using a fitness function that assesses the performance of each individual in population much like in genetic algorithms.
List of belief space categories
- Normative knowledge A collection of desirable value ranges for the individuals in the population component e.g. acceptable behavior for the agents in population.
- Domain specific knowledge Information about the domain of the cultural algorithm problem is applied to.
- Situational knowledge Specific examples of important events - e.g. successful/unsuccessful solutions
- Temporal knowledge History of the search space - e.g. the temporal patterns of the search process
- Spatial knowledge Information about the topography of the search space
02Population
The population component of the cultural algorithm is approximately the same as that of the genetic algorithm.
03Communication protocol
Cultural algorithms require an interface between the population and belief space. The best individuals of the population can update the belief space via the update function. Also, the knowledge categories of the belief space can affect the population component via the influence function. The influence function can affect population by altering the genome or the actions of the individuals.
04Pseudocode for cultural algorithms
- Initialize population space (choose initial population)
- Initialize belief space (e.g. set domain specific knowledge and normative value-ranges)
- Repeat until termination condition is met
- Perform actions of the individuals in population space
- Evaluate each individual by using the fitness function
- Select the parents to reproduce a new generation of offspring
- Let the belief space alter the genome of the offspring by using the influence function
- Update the belief space by using the accept function (this is done by letting the best individuals to affect the belief space)
05Applications
- Various optimization problems
- Social simulation
- Real-parameter optimization
Sources and credits
This article is adapted from the Wikipedia article “Cultural algorithm”, written by its contributors and licensed under CC BY-SA 4.0. Fathomly has changed the layout, removed citation markers, navigation and maintenance notices, and adjusted punctuation. This adapted version is shared under the same license. For references, see the original article.
Images, from Wikimedia Commons:
Fathomly is not affiliated with or endorsed by the Wikimedia Foundation. Spotted a problem? Tell us.