-
Notifications
You must be signed in to change notification settings - Fork 335
/
Copy pathc_probabilistic.tex
58 lines (45 loc) · 4.49 KB
/
c_probabilistic.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
% The Clever Algorithms Project: http://www.CleverAlgorithms.com
% (c) Copyright 2010 Jason Brownlee. Some Rights Reserved.
% This work is licensed under a Creative Commons Attribution-Noncommercial-Share Alike 2.5 Australia License.
% This is a chapter
\renewcommand{\bibsection}{\subsection{\bibname}}
\begin{bibunit}
\chapter{Probabilistic Algorithms}
\label{ch:probabilistic}
\index{Probabilistic Algorithms}
\index{Estimation of Distribution Algorithms}
\index{Population Model-Building Genetic Algorithms}
\section{Overview}
This chapter describes Probabilistic Algorithms
% probabilistic
\subsection{Probabilistic Models}
Probabilistic Algorithms are those algorithms that model a problem or search a problem space using an probabilistic model of candidate solutions. Many Metaheuristics and Computational Intelligence algorithms may be considered probabilistic, although the difference with algorithms is the explicit (rather than implicit) use of the tools of probability in problem solving. The majority of the algorithms described in this Chapter are referred to as Estimation of Distribution Algorithms.
% EDA
\subsection{Estimation of Distribution Algorithms}
Estimation of Distribution Algorithms (EDA) also called Probabilistic Model-Building Genetic Algorithms (PMBGA) are an extension of the field of Evolutionary Computation that model a population of candidate solutions as a probabilistic model. They generally involve iterations that alternate between creating candidate solutions in the problem space from a probabilistic model, and reducing a collection of generated candidate solutions into a probabilistic model.
The model at the heart of an EDA typically provides the probabilistic expectation of a component or component configuration comprising part of an optimal solution. This estimation is typically based on the observed frequency of use of the component in better than average candidate solutions. The probabilistic model is used to generate candidate solutions in the problem space, typically in a component-wise or step-wise manner using a domain specific construction method to ensure validity.
% papers
Pelikan et al. provide a comprehensive summary of the field of probabilistic optimization algorithms, summarizing the core approaches and their differences \cite{Pelikan2002b}.
% books
The edited volume by Pelikan, Sastry, and Cantu-Paz provides a collection of studies on the popular Estimation of Distribution algorithms as well as methodology for designing algorithms and application demonstration studies \cite{Pelikan2006}.
An edited volume on studies of EDAs by Larranaga and Lozano \cite{Larranaga2002} and the follow-up volume by Lozano et al. \cite{Lozano2006} provide an applied foundation for the field.
%
% Extensions
%
\subsection{Extensions}
There are many other algorithms and classes of algorithm that were not described from the field of Estimation of Distribution Algorithm, not limited to:
\begin{itemize}
\item \textbf{Extensions to UMDA}: Extensions to the Univariate Marginal Distribution Algorithm such as the Bivariate Marginal Distribution Algorithm (BMDA) \cite{Pelikan1998, Pelikan1999} and the Factorized Distribution Algorithm (FDA) \cite{Muhlenbein1999}.
\item \textbf{Extensions to cGA}: Extensions to the Compact Genetic Algorithm such as the Extended Compact Genetic Algorithm (ECGA) \cite{Harik1999a, Harik2006}.
\item \textbf{Extensions to BOA}: Extensions to the Bayesian Optimization Algorithm such as the Hierarchal Bayesian Optimization Algorithm (hBOA) \cite{Pelikan2000, Pelikan2001b} and the Incremental Bayesian Optimization Algorithm (iBOA) \cite{Pelikan2008}.
\item \textbf{Bayesian Network Algorithms}: Other Bayesian network algorithms such as The Estimation of Bayesian Network Algorithm \cite{Etxeberria1999}, and the Learning Factorized Distribution Algorithm (LFDA) \cite{Muehlenbein1999}.
\item \textbf{PIPE}: The Probabilistic Incremental Program Evolution that uses EDA methods for constructing programs \cite{Salustowicz1997}.
\item \textbf{SHCLVND}: The Stochastic Hill-Climbing with Learning by Vectors of Normal Distributions algorithm \cite{Rudlof1996}.
\end{itemize}
\putbib
\end{bibunit}
\newpage\begin{bibunit}\input{a_probabilistic/pbil}\putbib\end{bibunit}
\newpage\begin{bibunit}\input{a_probabilistic/umda}\putbib\end{bibunit}
\newpage\begin{bibunit}\input{a_probabilistic/compact_genetic_algorithm}\putbib\end{bibunit}
\newpage\begin{bibunit}\input{a_probabilistic/boa}\putbib\end{bibunit}
\newpage\begin{bibunit}\input{a_probabilistic/cross_entropy}\putbib\end{bibunit}