Supriya Ghosh (Editor)

Estimation of distribution algorithm

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Estimation of distribution algorithm httpsuploadwikimediaorgwikipediacommonsthu

Estimation of distribution algorithms (EDAs), sometimes called probabilistic model-building genetic algorithms (PMBGAs), are stochastic optimization methods that guide the search for the optimum by building and sampling explicit probabilistic models of promising candidate solutions. Optimization is viewed as a series of incremental updates of a probabilistic model, starting with the model encoding the uniform distribution over admissible solutions and ending with the model that generates only the global optima.

Contents

EDAs belong to the class of evolutionary algorithms. The main difference between EDAs and most conventional evolutionary algorithms is that evolutionary algorithms generate new candidate solutions using an implicit distribution defined by one or more variation operators, whereas EDAs use an explicit probability distribution encoded by a Bayesian network, a multivariate normal distribution, or another model class. Similarly as other evolutionary algorithms, EDAs can be used to solve optimization problems defined over a number of representations from vectors to LISP style S expressions, and the quality of candidate solutions is often evaluated using one or more objective functions.

The general procedure of an EDA is outlined in the following:

Using explicit probabilistic models in optimization allowed EDAs to feasibly solve optimization problems that were notoriously difficult for most conventional evolutionary algorithms and traditional optimization techniques, such as problems with high levels of epistasis. Nonetheless, the advantage of EDAs is also that these algorithms provide an optimization practitioner with a series of probabilistic models that reveal a lot of information about the problem being solved. This information can in turn be used to design problem-specific neighborhood operators for local search, to bias future runs of EDAs on a similar problem, or to create an efficient computational model of the problem.

For example, if the population is represented by bit strings of length 4, the EDA can represent the population of promising solution using a single vector of four probabilities (p1, p2, p3, p4) where each component of p defines the probability of that position being a 1. Using this probability vector it is possible to create an arbitrary number of candidate solutions.

Estimation of distribution algorithms (EDAs)

This section describes the models built by some well known EDAs of different levels of complexity. It is always assumed a population P ( t ) at the generation t , a selection operator S , a model-building operator α and a sampling operator β .

Univariate factorizations

The most simple EDAs assume that decision variables are independent, i.e. p ( X 1 , X 2 ) = p ( X 1 ) p ( X 2 ) . Therefore, univariate EDAs rely only on univariate statistics and multivariate distributions must be factorized as the product of N univariate probability distributions,

D Univariate := p ( X 1 , , X N ) = i = 1 N p ( X i ) .

Such factorizations are used in many different EDAs, next we describe some of them.

Univariate marginal distribution algorithm (UMDA)

The UMDA is a simple EDA that uses an operator α U M D A to estimate marginal probabilities from a selected population S ( P ( t ) ) . By assuming S ( P ( t ) ) contain λ elements, α U M D A produces probabilities:

p t + 1 ( X i ) = 1 λ x S ( P ( t ) ) x i ,   i 1 , 2 , , N .

Every UMDA step can be described as follows

D ( t + 1 ) = α UMDA S β λ ( D ( t ) ) .

Population-based incremental learning (PBIL)

The PBIL, represents the population implicitly by its model, from which it samples new solutions and updates the model. At each generation, μ individuals are sampled and λ μ are selected. Such individuals are then used to update the model as follows

p t + 1 ( X i ) = ( 1 γ ) p t ( X i ) + ( γ / λ ) x S ( P ( t ) ) x i ,   i 1 , 2 , , N ,

where γ ( 0 , 1 ] is a parameter defining the learning rate, a small value determines that the previous model p t ( X i ) should be only slightly modified by the new solutions sampled. PBIL can be described as

D ( t + 1 ) = α PIBIL S β μ ( D ( t ) )

Compact genetic algorithm (cGA)

The CGA, also relies on the implicit populations defined by univariate distributions. At each generation t , two individuals x , y are sampled, P ( t ) = β 2 ( D ( t ) ) . The population P ( t ) is then sort in decreasing order of fitness, S Sort ( f ) ( P ( t ) ) , with u being the best and v being the worst solution. The CGA estimates univariate probabilities as follows

p t + 1 ( X i ) = p t ( X i ) + γ ( u i v i ) , i 1 , 2 , , N ,

where, γ ( 0 , 1 ] is a constant defining the learning rate, usually set to γ = 1 / N . The CGA can be defined as

D ( t + 1 ) = α CGA S Sort ( f ) β 2 ( D ( t ) )

Bivariate factorizations

Although univariate models can be computed efficiently, in many cases they are not representative enough to provide better performance than GAs. In order to overcome such a drawback, the use of bivariate factorizations was proposed in the EDA community, in which dependencies between pairs of variables could be modeled. A bivariate factorization can be defined as follows, where π i contains a possible variable dependent to X i , i.e. | π i | = 1 .

D Bivariate := p ( X 1 , , X N ) = i = 1 N p ( X i | π i ) .

Bivariate and multivariate distributions are usually represented as Probabilistic Graphical Models (graphs), in which edges denote statistical dependencies (or conditional probabilities) and vertices denote variables. To learn the structure of a PGM from data linkage-learning is employed.

Mutual information maximizing input clustering (MIMIC)

The MIMIC factorizes the joint probability distribution in a chain-like model representing successive dependencies between variables. It finds a permutation of the decision variables, r : i j , such that x r ( 1 ) x r ( 2 ) , , x r ( N ) minimizes the Kullback-Leibler divergence in relation to the true probability distribution, i.e. π r ( i + 1 ) = { X r ( i ) } . MIMIC models a distribution

p t + 1 ( X 1 , , X N ) = p t ( X r ( N ) ) i = 1 N 1 p t ( X r ( i ) | X r ( i + 1 ) ) .

New solutions are sampled from the leftmost to the rightmost variable, the first is generated independently and the others according to conditional probabilities. Since the estimated distribution must be recomputed each generation, MIMIC uses concrete populations in the following way

P ( t + 1 ) = β μ α MIMIC S ( P ( t ) ) .

Bivariate marginal distribution algorithm (BMDA)

The BMDA factorizes the joint probability distribution in bivariate distributions. First, a randomly chosen variable is added as a node in a graph, the most dependent variable to one of those in the graph is chosen among those not yet in the graph, this procedure is repeated until no remaining variable depends on any variable in the graph (verified according to a threshold value).

The resulting model is a forest with multiple trees rooted at nodes Υ t . Considering I t the non-root variables, BMDA estimates a factorized distribution in which the root variables can be sampled independently, whereas all the others must be conditioned to the parent variable π i .

p t + 1 ( X 1 , , X N ) = X i Υ t p t ( X i ) X i I t p t ( X i | π i ) .

Each step of BMDA is defined as follows

P ( t + 1 ) = β μ α BMDA S ( P ( t ) ) .

Multivariate factorizations

The next stage of EDAs development was the use of multivariate factorizations. In this case, the joint probability distribution is usually factorized in a number of components of limited size | π i | K ,   i 1 , 2 , , N .

p ( X 1 , , X N ) = i = 1 N p ( X i | π i )

The learning of PGMs encoding multivariate distributions is a computationally expensive task, therefore, it is usual for EDAs to estimate multivariate statistics from bivariate statistics. Such relaxation allows PGM to be built in polynomial time in N ; however, it also limits the generality of such EDAs.

Extended compact genetic algorithm (eCGA)

The ECGA was one of the first EDA to employ multivariate factorizations, in which high-order dependencies among decision variables can be modeled. Its approach factorizes the joint probability distribution in the product of multivariate marginal distributions. Assume T eCGA = { τ 1 , , τ Ψ } is a set of subsets, in which every τ T eCGA is a linkage set, containing | τ | K variables. The factorized joint probability distribution is represented as follows

p ( X 1 , , X N ) = τ T eCGA p ( τ ) .

The ECGA popularized the term linkage-learning as denoting procedures that identify linkage sets. Its linkage-learning procedure relies on two measures: (1) the Model Complexity (MC) and (2) the Compressed Population Complexity (CPC). The MC quantifies the model representation size in terms of number of bits required to store all the marginal probabilities

M C = log 2 ( λ + 1 ) τ T eCGA ( 2 | τ | 1 ) ,

The CPC, on the other hand, quantifies the data compression in terms of entropy of the marginal distribution over all partitions, where λ is the selected population size, | τ | is the number of decision variables in the linkage set τ and H ( τ ) is the joint entropy of the variables in τ

C P C = λ τ T eCGA H ( τ ) .

The linkage-learning in ECGA works as follows: (1) Insert each variable in a cluster, (2) compute CCC = MC + CPC of the current linkage sets, (3) verify the increase on CCC provided by joining pairs of clusters, (4) effectively joins those clusters with highest CCC improvement. This procedure is repeated until no CCC improvements are possible and produces a linkage model T eCGA . The ECGA works with concrete populations, therefore, using the factorized distribution modeled by ECGA, it can be described as

P ( t + 1 ) = β μ α eCGA S ( P ( t ) )

Bayesian optimization algorithm (BOA)

The BOA uses Bayesian networks to model and sample promising solutions. Bayesian networks are directed acyclic graphs, with nodes representing variables and edges representing conditional probabilities between pair of variables. The value of a variable x i can be conditioned on a maximum of K other variables, defined in π i . BOA builds a PGM encoding a factorized joint distribution, in which the parameters of the network, i.e. the conditional probabilities, are estimated from the selected population using the maximum likelihood estimator.

p ( X 1 , X 2 , , X N ) = i = 1 N p ( X i | π i ) .

The Bayesian network structure, on the other hand, must be built iteratively (linkage-learning). It starts with a network without edges and, at each step, adds the edge which better improves some scoring metric (e.g. Bayesian information criterion (BIC) or Bayesian-Dirichlet metric with likelihood equivalence (BDe)). The scoring metric evaluates the network structure according to its accuracy in modeling the selected population. From the built network, BOA samples new promising solutions as follows: (1) it computes the ancestral ordering for each variable, each node being preceded by its parents; (2) each variable is sampled conditionally to its parents. Given such scenario, every BOA step can be defined as

P ( t + 1 ) = β μ α BOA S ( P ( t ) )

Linkage-tree Genetic Algorithm (LTGA)

The LTGA differs from most EDA in the sense it does not explicitly model a probabilisty distribution but only a linkage model, called linkage-tree. A linkage T is a set of linkage sets with no probability distribution associated, therefore, there is no way to sample new solutions directly from T . The linkage model is a linkage-tree produced stored as a Family of sets (FOS).

T LT = { { x 1 } , { x 2 } , { x 3 } , { x 4 } , { x 1 , x 2 } , { x 3 , x 4 } } .

The linkage-tree learning procedure is a hierarchical clustering algorithm, which work as follows. At each step the two closest clusters i and j are merged, this procedure repeats until only one cluster remains, each subtree is stored as a subset τ T LT .

The LTGA uses T LT to guide an "optimal mixing" procedure which resembles a recombination operator but only accepts improving moves. We denote it as R LTGA , where the notation x [ τ ] y [ τ ] indicates the transfer of the genetic material indexed by τ from y to x .

The LTGA does not implement typical selection operators, instead, selection is performed during recombination. Similar ideas have been usually applied into local-search heuristics and, in this sense, the LTGA can be seen as an hybrid method. In summary, one step of the LTGA is defined as

P ( t + 1 ) = R LTGA ( P ( t ) ) α LTGA ( P ( t ) )

Other

  • Probability collectives (PC)
  • Hill climbing with learning (HCwL)
  • Estimation of multivariate normal algorithm (EMNA)
  • Estimation of Bayesian networks algorithm (EBNA)
  • Stochastic hill climbing with learning by vectors of normal distributions (SHCLVND)
  • Real-coded PBIL
  • Probabilistic incremental program evolution (PIPE)
  • Estimation of Gaussian networks algorithm (EGNA)
  • References

    Estimation of distribution algorithm Wikipedia