Skip to content
BY-NC-ND 3.0 license Open Access Published by De Gruyter Open Access February 13, 2016

Bias-variance decomposition in Genetic Programming

  • Taras Kowaliw EMAIL logo and René Doursat
From the journal Open Mathematics

Abstract

We study properties of Linear Genetic Programming (LGP) through several regression and classification benchmarks. In each problem, we decompose the results into bias and variance components, and explore the effect of varying certain key parameters on the overall error and its decomposed contributions. These parameters are the maximum program size, the initial population, and the function set used. We confirm and quantify several insights into the practical usage of GP, most notably that (a) the variance between runs is primarily due to initialization rather than the selection of training samples, (b) parameters can be reasonably optimized to obtain gains in efficacy, and (c) functions detrimental to evolvability are easily eliminated, while functions well-suited to the problem can greatly improve performance—therefore, larger and more diverse function sets are always preferable.

MSC 2010: 62G08; 62J10; 68Q32; 68T05; 68W40

1 Introduction

Bias-variance decomposition is a fundamental method in machine learning. It allows for the decomposition of the error rate of a predictor into two components: the bias, representing the systematic error made by a model, and the variance, representing the error associated with the particularities of a training set. There are many “non-parametric” estimators characterized by a learning error that always tends to zero as the number of samples becomes large. Unfortunately, these learners become computationally expensive to deal with as the number of training samples increases, especially when problem dimensionality is high. Given a fixed number of training samples, non-parametric estimators typically encounter the “bias-variance trade-off”, where greater complexity is required to exclude model bias but too much complexity will cause over-specialization to the training data. In light of this trade-off, several authors suggest that the “hard” part of solving a complex problem is precisely finding a proper model with a bias suited for the domain at hand [10, 11], for instance, via the inclusion of appropriate heuristics.

Genetic Programming (GP) refers to the use of evolutionary computation to generate computer programs or mathematical expressions. The most typical form of GP is the tree-based version pioneered by Koza [17]. There are many other types, however, including a family easily expressed as graph-based networks, which include Cartesian Genetic Programming [24], Parallel Distributed Genetic Programming [27], Linear Genetic Programming (LGP) [3], and others [26]. These forms of GP are often static-length, while the complexity of the program is derived from the ratio of neutral to active code in the representation. In this work, we concentrate on LGP, an attractive choice for applications due to its tendency to produce parsimonious solutions [3] and its capacity to be converted directly to machine code [28]. We use a variable-length version, in which the effective length of a program will be less than some varying maximum value.

Our goal in this study is to explore the application of LGP to several benchmark problems under the lens of bias-variance decomposition. Some analysis of this form has already been conducted for tree-based GP, where it was shown that GP is generally a low-bias approach for regression problems. Some authors have used variance adjustment [1, 13] or other strategies [8] to improve generalization of discovered solutions. In particular, Fitzgerald and Ryan hypothesize that low operator complexity (a smaller or simpler function set) corresponds to lower variance [7]. In this study, we find some evidence to the contrary.

Here we investigate more deeply this breakdown for several problems, both regression and classification, by considering the effect of various key parameters on this decomposition. First, we look at program length, a key parameter for the complexity of GP programs and the variable leading to the classic bias-variance trade-off. Next, we examine more closely choices involving initialization and function sets as potential means of reducing either the bias or the variance portions of the decomposition. In these latter cases, we do not attempt to produce yet other versions of the usual bias-variance trade-off, but rather explore means toward the amelioration of either component of error given realistic constraints. We believe this analysis will help guide practitioners in their choice of models and parameter setting.

2 Bias-variance decomposition

Let x ϵ ℝp be a real-valued input vector, and y ϵ ℝp be an output value, with joint probability distribution P(x, y). Let our loss function in output space be L(y, y′), some measure of similarity between y and y′ in ℝ. We seek a function f which, when provided with an input x, will predict an “appropriate” output value f(x), i.e., one that tends to minimize the average loss at that point: ∫ L(y, f(x))P(y|x)dy.

2.1 Regression problems

For regression problems, the most common loss function is L(y, f (x)) = (yf(x))2. The best choice of predictor, in this case, is the simple conditional expectation, f*(x) = E[y|x] = ∫ yP(y|x)dy, also known as the regression function.

Assume that we have some predictor f, generated through the use of a data sample T, and tuned by a set of parameter values λ. In the case of a stochastic system, it also takes an initial seed I. For a given λ, we will write the output of f at x as f (x; T, I) to recall the other two dependencies. Then, the mean square error (MSE) of f at point x0 can be expressed as the expected loss between f(x0) and f*(x0) over various instances of T and I:

(1)mse(x0)=ET,I[(f(x0;T,I]E[y|x0])2]

in which we impose fixed-size training sets T. Note here that mse(x0) refers to the error of the expected predictor in x0, and as such, is a measure of the efficacy of the technique (and parameters) which spawned the predictor.

Via algebraic manipulation, and making the assumption that our problem is deterministic, we can break the MSE into two components:

(2)mse(x0)=bias(x0)+var(x0)bias(x0)=(f^(x0)E[y|x0]])2
(3)var(x0)=ET,1[(f(x0;T,I)f^(x0))2]

where f̂(x0) = ET,I [f(x0; T, I)] denotes the average response of the predictor over T and I. The bias-variance dilemma refers to the trade-off between the two components of error: whereas the bias should be reduced, to prevent systematic error in predictions due to the model, doing so typically results in an increased variance, such as the propensity of a learner to rote memorization of training data.[1]

Following previous work by Geman et al. [10], we will approximate these values as follows: 50 pairs of training set-seeds are generated, denoted T(k) and I(k), k = 1,..., 50. We calculate the average response for the evolutionary algorithm as

(4)f^(x0)150k=150f(x0;T(k),I(k)).

Then, we estimate the bias(x0) ≈ (f̂(x0) – E[y|x0])2 , the variance as

(5)var(x0)150k=150(f(x0;T(k),I(k))f^(x0))2

and mse(x0) as the sum of both terms.

2.2 Classification problems

For classification, it is necessary to use a binary loss function: L(y, f(x)) = 1–δ(y, f(x)), where 1 is the Kronecker delta: δ(a, b) = 1 if a = b, and 0 otherwise. Kohavi and Wolpert [14] have developed a bias-variance decomposition for the mean misclassification rate (MMR). Let us refer to the random variable which generates an actual answer to the input x as Y, and the random variable that generates an answer to input x via the learned function f (x; T, I) as Yf. Assuming a deterministic two-class problem, we can break the MMR into the usual two components:

(6)mmr(x0)=bias(x0)+var(x0)bias(x0)=12y{1,+1}(P[Y=y|x]PT,1[Yf=y|x])2
(7)var(x0)=12(1y{1,+1}(PT,1[Yf=y|x])2).

Note that P[Y = y|x] will be 1 or 0, due to the determinism of the problem. The term PT,I [Yf = y|x] is the probability of guessing value y via the learning algorithm over all possible training samples T and initial seeds I. As with previous expectations, we estimate this probability via 50 runs of the system.

2.3 Integrated statistics

Finally, we will report the integrated forms of the MSE, MMR, bias and variance, respectively denoted msê, mmr̂, biaŝ and var̂, to compare predictors on the basis of a single global measure in each category. For regression problems, integrals are computed numerically over a large set of uniformly distributed samples Q = {xj0} as follows:

(8)msê=1|Q|jmse(x0j)

where |Q| = 360,000. Note that since our numerical integration uses independently chosen samples, it can also be considered as an independent test set, and hence would detect any overfitting. For classification problems, we can similarly approximate the integrated mean misclassification rate, denoted mmr̂, over the test problem instances.

3 Model and experimental design

3.1 Linear Genetic Programming

We follow Brameier and Banzhaf’s definitions of LGP closely [3], with some minor modifications. An LGP individual consists of a collection of registers, nreg, equal to the number of inputs, nin, plus a number of additional registers initially filled with genetically defined constant values, nconst. Thus nreg = nin + nconst. Following this is a list of n program statements, with n ranging from 1 to a maximum program length, nprog. A program is executed by loading the input values into the initial registers, executing the program statements, then reading the output from the 0-th register. Figure 1 shows an example program.

Fig. 1 An example LGP program, instantiating the 2D Euclidean distance function, written in pseudo-Java notation. Note the existence of ineffective (“neutral”) code, commented out in light gray.
Fig. 1

An example LGP program, instantiating the 2D Euclidean distance function, written in pseudo-Java notation. Note the existence of ineffective (“neutral”) code, commented out in light gray.

An LGP individual is initialized by generating a sufficient number of constants to fill the additional registers, then generating a series of program statements. The constants are chosen uniformly and randomly from [0,1]. The number of program statements is selected randomly and uniformly between 1 and a maximum initialization length ninitnprog. The statements are generated by selecting three registers ra, rb and rc uniformly and randomly from all the value registers nreg, and then selecting a function g from the function set to generate the statement rc = g(ra, rb), or rc = g(ra) if g takes only one variable. Finally, any output from the LGP individual is constrained within a certain range, where outlying values are rounded to the closest extreme bound. These problem-specific output bounds were added to prevent undue influence of singularities on statistical analysis. The global output function produced by the LGP individual is denoted f as before: it is equal to some (more or less complicated) composition of a certain number of functions g.

We use two function sets to explore our problems: one short list, Gshort, and one long list, Glong. In some experiments, we utilize arbitrary subsets of Glong. All possible functions are listed in Table 1. Generally, in this article, we will write our LGP individuals as mathematical expressions. The reader should be aware that: (1) they are an expanded view of the program, since modules are written out explicitly, and (2) while we remove unused code, we do not remove any redundancy (i.e., a statement such as aa is not replaced by 0), in order to give a realistic view of the raw evolutionary outputs.

Table 1.

Pool of GP functions, Glong, with action on inputs a and b (where b is sometimes disregarded).

func. gactionfunc. gactionfunc. gaction
plusa + bsinsin amaxmax(a,b)
minusa – bcoscos aminmin(a, b)
timesababs|a|dist|a – b|
diva/b, or 1 if |b| < 0.00001inv1/a, or 1 if |a| < 0.00001thresh1 if a > b, 0 otherwise
powab, or 1 if undefinedloglog a, or 1 if a < 0.00001mag1|a| + |b|
sqrt|a|squarea2mag2a2+b2

3.2 Evolutionary algorithm

For all problems, we use a steady-state evolutionary algorithm. In the beginning, a population of Npop randomly initialized individuals f is created and each of them is evaluated by calculating its fitness F(f) (see below). The population is maintained at a constant size Npop throughout the evolutionary search by performing one-to-one replacements of individuals. During the search, an additional Nnew evaluations are performed as follows: for each evaluation, a deterministic tournament is held between two randomly chosen individuals of the current population. The worse of the two is replaced by either a cross between the winner and a second tournament-selected individual (with probability pcross), or a mutation of the winner (individual elements are mutated with probability pmut and equal chances of macro- or micro-mutation). We also sometimes include a “parsimony pressure”: if the difference between the fitness of the two individuals selected for tournament is less than ΔFpars, then we select the individual with the smaller number of program statements. In sum, while the population’s size remains Npop, the total number of evaluations is Neval = Npop + Nnew and the total number of individuals that are effectively replaced is comprised between 0 and Nnew.

3.3 Four benchmarks

We perform our investigations on several benchmark problems. For each benchmark, we execute approximately 500 runs with randomly chosen parameter values similar to the original source. From these runs, we estimate the combination leading to the lowest test fitness (since the “fitness” represents an error or a mismatch to be minimized). The problems and their associated search parameters are summarized in Table 2.

Table 2.

Summary of the three benchmark problems and their associated parameters.

MexHatDistNDSpiralCenparmi
problem parameters
typeregressionregressionclassificationclassification
dimension22N2144
axis range[−4,4][−10,10][‒2π•, 2π•]{0,...,255}
fitnessSSESSEMRMR
|T|4002000194300
evolutionary parameters
nin + nconst2 + 42N + 2N2 + 2144 + 19
nrog50403036
ninit10202028
pmut0.070.150.030.11
pcross00.00.150.69
Δ Fpars0.00050.0010.001
Npop10001000900043000
Neval5.105106 if N < 3, 107 otherwise2.1062.06
output bounds[−10,10][−104,104]
Gshortplus, minus, times, div, powplus, minus, times, div, abs, square, sqrtplus, minus, times, div, sin, cos, threshplus, minus, times, div
GlongSee Table 1

3.3.1 MexHat

The first problem is the “Mexican hat” (MexHat), borrowed from [3] and so named after the shape of its 2D manifold in 3D space. The MexHat function is reduced here to its 2D expression, denoting x = (a, b):

(9)fMex*(x)=(1a2+b24)e(a2+b28).

Note that Euler’s number e is not included in the function set, and hence must be approximated genetically. For this regression problem, the fitness value F of an LGP individual f is defined as the sum of squared errors (SSE), with respect to the target f*Mex, approximated over the training samples T = {xi}

(10)FSSE(f)1|T|i(f(xi)fMex*(xi))2

3.3.2 DistND

Next, we evaluate several “distance” problems (DistlD, Dist2D, …, DistND). These are a series of regression problems based on Euclidean distance in any even number of dimensions:

(11)fDist*(x)=j=1N(ajbj)2.

Note that, since x = (a1 …, aN, b1,...,bN), the dimensionality of the problem is actually 2N. The distance functions are useful for investigating a related series of problems in increasing dimensionality. The fitness function FSSE is calculated as in Eq. (10), with target f*Dist.

3.3.3 Spiral

We also include two classification problems. The first one is the artificial “spiral” problem, as described by Lang and Witbrock [19]. Here, the target f*spir is a binary function whose domains are intertwined in a double spiral pattern (Figure 2). There has been significant research on this problem, including in the GP community, due to both its difficulty and its capacity to be easily visualized [5]. For this classification problem, the fitness function is an approximation of the misclassification rate (MR), i.e., the average of all binary mismatches:

(12)FMR(f)1|T|i(1δ(f(xi),fSpir*(xi))).
Fig. 2. Output examples from a GP classification run. Positive and negative samples are drawn as white and black dots, while the pattern produced by the GP individual is drawn as light orange or dark blue.
Fig. 2.

Output examples from a GP classification run. Positive and negative samples are drawn as white and black dots, while the pattern produced by the GP individual is drawn as light orange or dark blue.

3.3.4 Cenparmi

The second classification problem is the Cenparmi database of hand-written characters, collected by the CENPARMI lab at Concordia University (Figure 3). This real-world supervised learning challenge consists of 6000 image samples of hand-written digits, and constitutes a high-dimensional problem with tightly correlated features. We scaled the images to a size of 12 × 12 = 144 integer inputs between 0 and 255 representing gray-level pixels. Our treatment made the classification problem binary by distinguishing between a selected class and the remainder of the set (e.g., between “4” and “not-4” instances). At the start of each run, we randomly selected the particular class, involving |T| = 300 training samples from the training pool, and |V| = 600 test samples from the test pool. Note that our approach to the database remained “naive” on purpose, i.e., we did not include geometric information about the relative location of the pixels. Our goal here was to test the bias-variance limits of genetic programming, not achieve competitive performance. The fitness function FMR was calculated as in Eq. (12), with target fcenp representing the correct binary answer for the chosen class. Note that the state-of-the-art MR, across all learning techniques and available information, is approximately 0.02 [20].

Fig. 3. 16 samples from the Cenparmi database, divided into classes (left) “zero” and (right) “not-zero”. Note that the machine learner does not have access to geometric adjacency information about the pixels.
Fig. 3.

16 samples from the Cenparmi database, divided into classes (left) “zero” and (right) “not-zero”. Note that the machine learner does not have access to geometric adjacency information about the pixels.

4 Overall results

4.1 Initial exploration

As expected, LGP was generally successful at evolving good regression functions and classifiers. Some examples of outputs for the Spiral problem are shown in Figure 2, and for the MexHat problem in Table 3. In further sections we will look closely at the variance associated with the individual runs of the evolutionary algorithm. Recall that we are discussing the variation of the solutions in terms of their behaviour in input, i.e., “phenotypic”, space. While this is typically the object of interest during the use of genetic programming—as practitioners care how well they achieve some objective or fit some data—it should be noted that this is not the same as variance in genotypic space. In other words, two largely different mathematical expressions (genotypes) might have nearly identical performance (phenotypes), while, conversely, two genetic programs differing by a single instruction might produce dramatically different output functions.

Table 3

The three best solutions on a run of the MexHat problem using the Glong function set.

expression f(x), where x = (a, b)fitness F(f)action on [−4, 4]2
fMex*(x)=(1a2+b24)e(a2+b28)0
fMex1(x)cos(αb2αa2)(βαb2αa2)2+(cos(βαb2+αa2βsin(αb2αa2)))2with α=0.7852 and β=0.742.0.00004
fMex2(x)=log(max{log(a2+b20.174),|βa2+b2αa2+b2|+|α+βa2+b2αa2+b2|})with α=sin(0.673) and β=sin(0.535).0.00009
fMex3(x)=min{|(αa2+b2)2+α2a2+b2|,β+(αa2+b2)2+α2}cos(βa2+b2)with α=(0.626),β=sin(0.9050.905).0.00010

The question here is about genetic convergence, that is, the propensity of evolutionary methods to find the same or equivalent mathematical expressions for the same problem on different runs. Indeed, this is a difficult concept to evaluate, since while there are ways to detect when some related programs are similar, there is no way, in general, to determine if two arbitrary programs are equivalent. There exist several measures of genotypic dissimilarity (termed “diversity”, after their typical usage[2]) for GP. For instance, edit distance (a measure of the number of steps requiredto transform one program into another, adapted for LGP in [3]), entropy, and behavioural diversity (comparing distributions of program outputs) are known to correlate well with expected fitness for some problem domains [4, 12]. Unfortunately, in the case of edit distance and entropy, typical applications of these measures to GP tend to make the assumption that individuals are genetically related, hence are not useful for programs generated via independent means. Furthermore, some identities, such as the capacity to construct one primitive function from combinations of other functions, are not detectable.

Informally speaking, in most cases that we examined, some form of genetic convergence was the norm. For instance, consider the solutions evolved from the Dist2D problem using the Gshort function set (see Table 2). We show below the two functions of x = (ai, a2, b1, b2) that had the best fitness values among 33 inexact solutions:

fDist1(x)=(|b1a1.1)|)2+((|0.001|a2)+b2fDist1(x)=((|(a2b2+0.053)|)2+(|(b1a1)|)2)2+||0.053|0.499|

with FSSE(fDist1) = 0.0006 and FSSE(f2Dist) = 0.0126. In these cases, the evolved solutions strikingly “resemble” the target function f*Dist(x) = ((a1b2)2 + (a2b2)2)1/2, genetically speaking. To obtain exactly f*Dist, all that would be required is minor tweaks and some elimination of redundancy. One could reasonably expect that additional computational effort would achieve at least the former, and under parsimony pressure, possibly the latter.

In the case of the Spiral classification problem, we also observed convergence to a similar form of solution, even if there were differences between the individual runs. For instance, using the Glong function set, 5 out of 50 runs found zero-fitness solutions to the problem. Each of the 5 runs admits a similar structure of concentric rings (Figure 2), in which some additional singular boundary, like a flaw in a crystal, separates regions of rings to compensate for the ascending radius of the spirals. All five solutions make prodigious use of the div, mag2, and thresh functions, and one of either sin or cos. While this strategy is relatively consistent for the best of the LGP runs, it is by no means the only solution to the problem generally. For instance, techniques using constructive neural networks generate quite different output patterns, including true spirals [6].

On the other hand, consider the best solutions to the MexHat problem using its Glong function set. The three best solutions are shown in Table 3. Notice how all three individuals depend on a2 + b2, i.e., they discovered the radial symmetry of the MexHat target. Otherwise, these solutions display much more genetic variance than in the previously discussed problems. The edit distance between these statements is evidently quite high, as both the statement structure and the functions used differ wildly. Regardless, the outputs of these functions in the 2D plane are quite similar, and do not significantly overfit. Hence, despite great genotypic variation, they are all highly successful examples of regression solutions.

While our description is rather informal (the development of a more rigorous measure of genetic convergence lying beyond the scope of this study), we believe that it highlights the possibility of phenotypic convergence in the absence of genotypic convergence.

4.2 Typical bias-variance numbers

The bias-variance decomposition of each of our benchmark problems, including five different instances of DistND, is shown in Table 4. Parameters were set as indicated in Table 2. As proceeding sections will show, the listed values are typical. Nearly everywhere, the variance portion of the error dominates the bias component, often by several multiples. This is generally consistent with a view of GP as a low-bias/high-variance approach, which suggests that overfitting should be of concern for GP practitioners. In all cases, the use of Glong also outperforms Gshort, especially in the bias values. This is true despite the fact that some of the particular functions are known to be detrimental to evolvability (see Section 5.4).

Table 4.

Integrated error and bias-variance decomposition on the target benchmarks. “Exact” solutions, for the regression problems DistND, refer to individuals whose symbolic expression reduces exactly to the target function f* (impossible for MexHat, in the absence of Euler’s number e) and, for the classification problems Spiral and Cenparmi, to those achieving a zero fitness.

problemfunc. seterrorbiasvar.#exact
regression problemsmse^biaŝvar̂
MexHatGshort0.04860.01610.0324
Glong0.00210.00020.0019
Dist1DGshort0.00000.00000.000050
Glong0.00000.00000.000050
Dist2DGshort2.47420.26682.207317
Glong0.00000.00000.000050
Dist3DGshort13.8956.5097.3862
Glong0.60810.01780.590343
Dist4DGshort14.0688.1035.9660
Glong1.2270.0931.13444
Dist5DGshort16.39511.2675.1290
Glong5.9721.5284.4444
classification problemsmmr^biaŝvar̂
SpiralGshort0.16140.04280.11860
Glong0.11730.02350.09385
CenparmiGshort0.09930.06810.03120
Glong0.09310.06130.03180

5 Detailed analysis

In this section, we examine the effects of varying one of four control parameters separately from the others. First, we look at a key parameter of GP complexity, the maximum program length Nlong. It is here that we expect to see the classic bias-variance trade-off, and the existence of a range corresponding to the optimal point in that trade-off.

Next, we examine parameters related to the genetic initialization I, population size Npop, and choice of function set G. Our goal here is to explore the potential for reducing the error due to variance and bias, respectively, in a manner achievable by a GP practitioner. As such, in these latter experiments we aim not to generate new forms of the bias-variance trade-off, but instead, to study the error components under computationally constrained experimentation.

5.1 Varying maximum LGP length

First, a series of experiments were undertaken in which the maximum length of the LGP expressions was varied. The ninit value (the maximum initial number of program statements) was chosen randomly and uniformly from the range [1, 150], and the maximum LGP program length was set to nprog = 2ninit. Over 200 values of nprog (including repeats) were explored, and msê (or mmr̂), biaŝ and var̂ were computed for each value. The Gshort function set was used throughout.

Our first question dealt with the best choice of model for the integrated error quantities over an independent parameter λ (such as nprog here). Based on experimentation with several curve types, we elected to fit mse^ (or mmr^) and bias^ to a four-parameter model err4(λ) = αeβλ + γλ(2) + 𝛜 and var^ to either the same curve, or to a straight line. Our choices are motivated in Annex B. Figure 4 shows the results. The data fits closely to the expected view of the bias-variance decomposition of a non-parametric learner over a complexity measure[3]. Indeed, as the maximum complexity of the evolved solutions increases, the bias term quickly drops to a level close to zero. Simultaneously, however, the variance term rises, showing an increased propensity to overfit.

Fig. 4 Best-fit curves of bias^$\widehat{{\rm{bias}}}$ (orange, using err4), var^$\widehat{{\rm{var}}}$ (green, using using err4 or a straight line) and mse^$\widehat{{\rm{mse}}}$ or mmr^$\widehat{{\rm{mmr}}}$ (blue, using err4), varying over nprog.
Fig. 4

Best-fit curves of bias^ (orange, using err4), var^ (green, using using err4 or a straight line) and mse^ or mmr^ (blue, using err4), varying over nprog.

Clearly, selecting a maximum length too low will significantly sabotage results. An important question is, on the contrary, whether a practitioner could plausibly be expected to choose higher or intermediate values so as to favor good results. To verify this, we broke our independent variable nprog into a series of equally sized bands of length 50. We report the mean mse^ (or mmr^) over the best band, as opposed to over all runs, including the improvement and the certainty (according to a two-sample t-test):

benchmarkbest nprog bandmean mse^ or mmr^ (all)mean mse^ or mmr^ (best)improvecertainty
MexHat[200, 250]0.04230.038111%< 0.03
Dist3D[150, 200]15.4112.1627%« 0.001
Spiral[150, 200]0.16750.15399%« 0.001
Cenparmi[150, 200]0.10040.09446%< 0.002

Hence, we conclude that some reasonable amount of one-dimensional experimentation with nprog could be expected to lead to improvements.

5.2 Variance due to genetic initialization

Here, we confirm our intuition regarding the role of choice of random seed for the efficacy of the evolutionary algorithm. Our goal is to estimate the proportion of variance resulting from the training samples T versus the random seed I. For our regression problems, MexHat and DistND, using the Gshort function set, we computed mse^, bias^ and var^ as described in section 2. Note that the Spiral classification problem uses a static set of samples, hence could not be analyzed in this fashion. For the other classification problem, Cenparmi, we calculated mmr^. First, we used different random seeds I(k) with the same training sample set T (“same T”); then, we used different seeds I(k) sample paired with different sample sets T(k)(“normal”). In both cases, the size of the sample set |T| was fixed, as indicated in Table 2. Finally, we computed a third experiment in which the training sets were larger (“large |T|”), with |T(k) = 6400 for the regression benchmarks and |T(k)| = 600 for the Cenparmi benchmark. The results over approximately 50 runs for each trial are shown in Figure 5.

Fig. 5 A comparison of the effect of selection of training set T on mse^$\widehat{{\rm{mse}}}$ or mmr^$\widehat{{\rm{mmr}}}$ and var^$\widehat{{\rm{var}}}$ on three benchmarks. Plots are “Tukey-style” boxplots: dark lines are median values, boxes are based on quintiles, whiskers represent the 95% confidence interval, circles are outliers
Fig. 5

A comparison of the effect of selection of training set T on mse^ or mmr^ and var^ on three benchmarks. Plots are “Tukey-style” boxplots: dark lines are median values, boxes are based on quintiles, whiskers represent the 95% confidence interval, circles are outliers

Comparing the “normal” runs against the “same T” runs, we see statistically significant gains in performance for the latter in the case of the Cenparmi benchmark only, although the absolute difference is small. This implies a smaller role for the particularities of training set selection in the generation of variance, relative to the role of the initialization seed. Similarily, comparing the “normal” runs against the “large |T|” runs shows statistically significant gains for the latter in the MexHat benchmark only. This time, the reduction in variance due to the increased training set size is approximately 40% of total variance, leaving 60% due to initialization seed. For the other two benchmarks, there is negligible difference in var^. Again, we see that the selection of the initialization seed has more influence on the variance than the size of the training set, even when increased by a factor 16.

Therefore, it is clear that in these examples the majority of the variance associated with the error rates stems from the initial sample of genetic space. We would expect this to be reflected in the final genetic outputs.

5.3 Varying the population size

In this third series of experiments, we elected to explore the effect of the population size Npop (the steady number of evolved individuals f) on the performance of the algorithm, given a constant number of evaluations Neval. This parameter plays here the role of a trade-off, which involves the amount of initial exploration taken by the EA (in a larger population), as opposed to the exploitation of the better individuals (in a smaller population). In order to avoid greater amounts of computation, we maintain the number of evaluations Neval = Npop + Nnew constant, i.e., diminish the number of individuals created via genetic operators, Nnew, as Npop grows.

We computed over 200 samples for each problem, with ranges of [1, 4000]. Due to the different role of parameter Npop, i.e., that of a trade-off rather than a measure of model complexity like nprog, we re-evaluated our choice of fitting curves to model the data and decided to use err4 for all three error measures. These results are shown in Figure 6.

Fig. 6 Best-fit curves, varying over Npop
Fig. 6

Best-fit curves, varying over Npop

In two cases, we observe that the variance component of error drops to some minimal level, and then plateaus. This suggests that following some critical population size, an adequate sample of genotypic space is found. The bias component of error also drops initially, and then gradually begins to climb. This is likely due to a decrease in evolutionary evaluations, where unnecessarily large initial population sizes encroach on the time devoted to exploitation in the algorithm. (It is unlikely that the bias is caused by the discovery of difficult-to-find local minima via larger samples, since these would not only increase bias but also lower variance.) In the other two cases, no significant effect on variance was observed, suggesting that small populations sample the genetic space sufficiently well.

A key point here is that the lowest values of variance for all these problems is still significantly higher than the variance we associate with the selection of the training set (see section 4.1). That is, we cannot reasonably expect larger initial samples of the genomic space to eliminate the variance due to initialization.

An interesting effect can be seen with the Dist3D benchmark: namely, the best results were observed with a very small population, followed by an increase in error rates, and finally a decrease. Indeed, the error scores seen at the larger population sizes are significantly better than the middle range. This difference is driven largely by bias, not variane. We are at a loss to explain this behaviour.

Again, we asked whether or not a practitioner could hope to select optimal values of Npop in order to increase success. We broke the possible values into bands of size 500. We summarize our results below (noting that no significant changes were observed with the Cenparmi runs):

benchmarkbest nprog bandmean mse^ or mmr^ (all)mean mse^ or mmr^ (best)improvecertainty
MexHat[2500,3000]0.03930.043610%< 0.0002
Dist3D[0,500]15.5516.325%« 0.001
Spiral[3500,4000]0.14840.170915%« 0.001

The conclusion here is that, in some cases, modest but significant improvements can be made by adjusting Npop

5.4 Varying the function set

In a final series of experiments, we elected to vary the size of the function set, |G|, and its membership. Here, each run uses a random subset of Glong as a selection of available choices for the evolutionary algorithm. In each subset G, the basic functions {plus, minus, times, div} were included by default. Next, an integer was chosen randomly and uniformly in [0,14] and that many additional functions were drawn from Glong (see Table 1) to form the pool available to the evolutionary algorithm. Each function was equally likely to be chosen by genetic initialization or mutation. Results are shown in Figure 7.

Fig. 7 Best-fit curves, varying over function set size |G|. Note the ill-fit curves for Spiral and Dist3D near the mid-range values, due to the arbitrary presence or absence of particularly useful functions
Fig. 7

Best-fit curves, varying over function set size |G|. Note the ill-fit curves for Spiral and Dist3D near the mid-range values, due to the arbitrary presence or absence of particularly useful functions

For all benchmarks save Cenparmi, there is a sharp increase in performance with the number of functions included (in the case of Cenparmi, the performance is unchanged at all sizes). It is immediately evident that the expected performance, in terms of mse^ or mmr^, improves rapidly with more functions. Although there is some drop in variance, too, especially with values near four functions, the primary gains are made via reduction in bias^, until the value drops nearly to zero. The var^ score, on the other hand, appears to plateau before this.

The fact that var^ does not begin to increase with more functions is interesting. It suggests that the addition of new choices to the function set is not an increase in model complexity, i.e., that it does not generally enable the production of things previously impossible. Instead, we should view it as a means of skewing the distribution of solutions so as to make relevant solutions more probable. Thus, we propose that the function set can be used to control the bias of the system, that is, introduce heuristics that may (or may not) be appropriate to a given problem.

If the above hypothesis is correct, we should be able to see changes to output associated with the addition of particular functions while the set size is held constant. To test this, we generated over 50 runs of the system where the function set was selected as above, but the size was fixed to 11 (the necessarily included functions {plus, minus, times, divg along with 7 additional randomly chosen functions from Glong}. For each function, we compared the mean of mse^ in those runs which included the function versus those runs which did not.

Indeed, we discovered several important results. Below we list all those functions with significant certainty (p < 0.05) for the MexHat problem, noting that the mean mse^ score over all runs is 0.0082 (see Figure 8 for a graphic comparison):

Fig. 8 Comparison of the mean mse^$\widehat{{\rm{mse}}}$ score on runs with function set sizes of 11, grouped by the presence or absence of particular functions g. Boxplot conventions as in Fig. 9
Fig. 8

Comparison of the mean mse^ score on runs with function set sizes of 11, grouped by the presence or absence of particular functions g. Boxplot conventions as in Fig. 9

function g for MexHatmse^ without gmse mse^ with gΔmse^ without gcert.
min0.00640.0102+0.0038p < 0.03
inv0.00620.0106+0.0044p < 0.01
mag10.00970.0061−0.0036p < 0.02
mag20.01190.0027−0.0092p « 0.01
square0.00650.0107+0.0042p < 0.02

The majority of the functions had an adverse effect (8 out of 14 increased mse^), implying that either they tended towards overfitting or that evolutionary effort was wasted on removing them from the potential solutions. The most significant single function, mag2, had a highly beneficial effect, decreasing the expected mse^ score by about 67%.

Most of the improvement in efficacy when augmenting the function set can probably be ascribed to this single function.

Similarly, for the Spiral problem, where the mean mse^ score for all runs is 0.1549, we found:

function g for Spiralmse^ without gmse^ with gΔmse^cert.
cos0.19220.1134−0.0788p « 0.01
thresh0.12510.1765+0.0514p < 0.03
mag20.19810.1324−0.0657p < 0.01

The full benefits of increasing the function set can be accounted for by the inclusion of two favourable functions, cos and mag2, undoing the damage caused by the other functions, which had a mostly adverse effect (7 of the remaining 12). The same pattern is seen with the Dist3D problem (where the mean mse^ score for all runs is 5.175):

function g for Dist3Dmse^ without gmse^ with gΔmse^cert.
sin4.0997.137−3.038p < 0.05
mag29.5560.414+9.142p « 0.01

The most useful function, mag2, accounts for all gains when increasing the function set. This is not surprising, as mag2 is a repeated element in the target solution fDist3D. Again, the majority of additional functions (10 of 13) have an adverse effect on the problem (increasing the fitness), but a very useful function can compensate this, and provide large gains to overall performance, primarily through elimination of bias.

For the Cenparmi problem, there are several moderately significant functions, but none whose effect increased or decreased error by more than 0.005.

6 Conclusions

Our study has generally confirmed the view of GP as a low-bias and high-variance approach to regression and classification problems. Furthermore, our analysis of variation on the maximum program length nprog has shown results consistent with the bias-variance decomposition of a non-parametric learning technique.

We have reached several key conclusions from this study. While these results have been seen in particular contexts in the literature, here we contrast their effects between benchmarks, and quantify the expected effect. The conclusions are:

  1. Initialization creates the most variance: The variance associated with GP runs is largely due to the initialization seed, and secondarily to the selection of training samples. Further, increasing the sample of the genomic space taken in the population cannot be realistically expected to reduce this variance.

  2. Parameters can be optimized: For all three parameters that we examined (maximum program length nprog, population size Npop, and function set G), one-dimensional selection of a reasonably sized band of values usually led to significant improvements in overall results. Of the three parameters, the largest gains were obtained by making minor changes to the function sets: indeed, in three of four benchmarks, the inclusion of one appropriately chosen function affected performance more than the best expected gains from tuning the other two parameters. In none of the benchmarks was the inclusion of all functions detrimental. The consistency of these results between benchmarks suggests that this conclusion can be generalized.

  3. Population size effects are unclear: The choice of population size, Npop, led to largely inconsistent results. For two benchmarks, variance could be decreased with larger initial populations. Along with this decrease was an increase in bias, due to the lessened efforts devoted to genetic optimization. For the other two benchmarks, significant changes in variance were not seen.

  4. Larger function sets are better: Regarding the choice of function set G for inclusion in the genetic search space, the widest possible space was consistently preferred by evolution, reflected in a steady decrease of regression or classifier bias to near-zero levels. This was true despite the fact that the majority of functions were demonstrably detrimental to the evolvability of the problem. Thus it appears easier for evolution to eliminate ill-suited heuristics than to construct well-suited heuristics from more primitive operators. In particular, when increasing the function set size, we found no increase in either the average error or the variance of the results, thus providing evidence against the hypothesis of Fitzgerald and Ryan [7].

  5. Well-chosen functions are best: In most cases we explored here, there existed some non-standard functions in the larger function set very well suited to the problem at hand. It is these functions which accounted for the majority of gain in efficacy.

7 Future directions

Today, GP is increasingly being applied to knowledge extraction, where a symbolic description of a given database is desired. For instance, GP serves to extract scientific hypothesis from selected databases [2, 30, 33]; extract symbolic features from image databases [15, 16, 25, 34]; explore the space of network generators to create predictive descriptions of agent behaviours or complex networks [22, 23]; and other engineering-related applications [18]. In all these tasks, the genetic component of the evolved solution has definite meaning, possibly independently of the evaluation of the solution.

The most popular philosophy of science generally admits any model which makes useful and testable (falsifiable) predictions, and is parsimonious [21]. These conditions, however, are the product of an age in which the general assumption was made that only a few competing hypothesis would be available at any time, and hence, that determination of the most accurate or parsimonious solution would be simple. In the case of automated knowledge extraction, the possibility exists that indefinitely many models can be posited without any clear means of determining a best one: generalization becomes a multi-dimensional question, and parsimony, if at all definable, is potentially subject to the non-computability of minimal program length.

While in some cases human-understandable (or even elegant) solutions are discovered [2, 30], generally speaking, little attention has been paid to the matter. This study has shown that these issues are problem-dependent: in cases where a clear solution existed in the space (such as the DistND regression problems) genotypic convergence was possible, while in other cases (such as the MexHat regression problem) many competing genotypically distinct solutions existed. The consequences of consistent genetic diversity on the capacity to extract knowledge automatically remains to be investigated.

A A note on several other UCI databases

In the course of conducting this research, we also experimented with several popular data sets from the University of California, Irvine (UCI) [9]. They were explored in some detail, but ultimately rejected as inappropriate for this style of research. Specifically, we worked with the Breast Cancer Wisconsin (Diagnostic) data set [32], the Pima Indians Diabetes data set [31] (both original and corrected versions), and the Statlog (Australian Credit Approval) data set [29]. Performance was systematically tested by measuring MR for different program lengths: nprog ∈ {1,2,20,50,100}. We discovered that in all three cases the naive application of GP was incapable of improvement when given additional complexity (i.e., increasing nprog), relative to the natural stochasticity due to the selection of training and test sets. For all data sets, the difference in MR on randomly chosen test samples was not significantly different between nprog = 2 and nprog = 100 (over 30 runs, a textbook t-test did not discover any trends with p < 0.1). This implied that a simple threshold on one or two input variables was the best discoverable performance by a naive technique.

Lest our results be interpreted as a failure of our particular approach to GP, we re-ran the same experiments using another non-parametric learner, a neural network. Specifically, neural networks with a varying number of hidden nodes were trained and tested on the above databases, and trained via backpropagation (using a sigmoid activation function ϕ(v) = 1.7159 • tanh(2v/3), and 50 epochs of training). The number of hidden neurons used varied over the set {1, 2,5,10,50,100} and 30 runs. In all cases, the test error did not change significantly, save for the Diabetes database, where in fact the test error worsened significantly.

An illustration of these results is shown in Figure 9. In conclusion of these findings, we deemed the above three databases too noisy for non-parametric learning, and recommend future researchers to proceed with caution.

Fig. 9 Distribution of training MR (dark gray) and test MR (light gray) for at least 30 runs. (Left) Results of LGP on the credit card data set varying over nprog. (Right) Results of neural networks on the corrected diabetes data set varying over the number of hidden nodes.
Fig. 9

Distribution of training MR (dark gray) and test MR (light gray) for at least 30 runs. (Left) Results of LGP on the credit card data set varying over nprog. (Right) Results of neural networks on the corrected diabetes data set varying over the number of hidden nodes.

B Curve selection

Selection of a model (curve) for data fitting was carried out using the MexHat domain, using the Gshort function set, and over 100 runs. All curves were fit using the Gauss-Newton method of non-linear regression. Goodness-of-fit error was the residual standard error. All polynomials up to degree seven were fit. We also tested three curves designed to resemble expected curve shape (from previous experiments with MSE):

(13)err5(λ)=αeβλ+γλ2+δλ+ϵerr4(λ)=αeβλ+γλ2+ϵerr4`(λ)=αeβλ+δλ+ϵ

The best error rate for fitting the mse data was achieved by the err4 curve (0.00809), slightly outperforming the other two exp curves, and even outperforming the more complex 7-term polynomial (0.00865). Further simplifications to the exp curves rapidly increased the error rate. Hence, we elected to use err4 as a default guess for all curves, with other err curves substituted in the case of an improvement of error greater than 0.001. The var curves were typically modelled via straight lines, unless a curve improved error by more than 0.001.

Acknowledgement

This work was supported by an ISC-PIF/DIM 2010 Région Paris Ile-de-France fellowship to T.K.

References

[1] A. Agapitos, A. Brabazon, and M. O’Neill, Controlling overfitting in symbolic regression based on a bias/variance error decomposition, Parallel Problem Solving from Nature (PPSN XII), Springer, 2012, pp. 438–447.10.1007/978-3-642-32937-1_44Search in Google Scholar

[2] M.J. Baptist, V. Babovic, J. Rodriguez-Uthurburu, M. Keijzer, R.E. Uittenbogaard, A. Mynett, and A. Verwey, On inducing equations for vegetation resistance, Journal of Hydraulic Research 45 (2007), no. 4, 435–450.10.1080/00221686.2007.9521778Search in Google Scholar

[3] M.F. Brameier and W. Banzhaf, Linear genetic programming, Springer, 2006.Search in Google Scholar

[4] E.K. Burke, S. Gustafson, and G. Kendall, Diversity in genetic programming: an analysis of measures and correlation with fitness, Evolutionary Computation, IEEE Transactions on 8 (2004), no. 1, 47–62.10.1109/TEVC.2003.819263Search in Google Scholar

[5] S.K. Chalup and L.S. Wiklendt, Variations of the two-spiral task, Connection Science 19 (2007), no. 2, 183–199.10.1080/09540090701398017Search in Google Scholar

[6] S.E. Fahlman and C. Lebiere, The cascade-correlation learning architecture, Advances in neural information processing systems 2 (David S. Touretzky, ed.), Morgan Kaufmann Publishers Inc., 1990, pp. 524–532.Search in Google Scholar

[7] J. Fitzgerald and C. Ryan, On size, complexity and generalisation error in GP, Proceedings of the 2014 conference on Genetic and evolutionary computation, ACM, 2014, pp. 903–910.10.1145/2576768.2598346Search in Google Scholar

[8] ——Selection bias and generalisation error in genetic programming., Sixth International Conference on Computational Intelligence, Communication Systems and Networks, CICSyN2014, 2014.Search in Google Scholar

[9] A. Frank and A. Asuncion, UCI machine learning repository (http://archive.ics.uci.edu/ml), 2011.Search in Google Scholar

[10] S. Geman, E. Bienenstock, and R. Doursat, Neural networks and the bias/variance dilemma, Neural Computation 4 (1992), no. 1, 1–58.10.1162/neco.1992.4.1.1Search in Google Scholar

[11] T. Hastie, R. Tibshirani, and J. Friedman, The elements of statistical learning: Data mining, inference, and prediction, 2nd ed., Springer, 2008.10.1007/978-0-387-84858-7Search in Google Scholar

[12] David Jackson, Phenotypic diversity in initial genetic programming populations, Genetic Programming, Springer, 2010, pp. 98–109.10.1007/978-3-642-12148-7_9Search in Google Scholar

[13] M. Keijzer and V. Babovic, Genetic programming, ensemble methods and the bias/variance tradeoff - introductory investigations, Proceedings of the European Conference on Genetic Programming (London, UK), Springer-Verlag, 2000, pp. 76–90.10.1007/978-3-540-46239-2_6Search in Google Scholar

[14] R. Kohavi and D.H. Wolpert, Bias plus variance decomposition for zero-one loss functions, Machine Learning: Proceedings of the Thirteenth International Conference (L. Saitta, ed.), Morgan Kaufmann Publishers, Inc., 1996.Search in Google Scholar

[15] T. Kowaliw and W. Banzhaf, The unconstrained automated generation of cell image features for medical diagnosis, Conference on Genetic and evolutionary computation (GECCO), 2012, pp. 1103–1110.10.1145/2330163.2330316Search in Google Scholar

[16] T. Kowaliw, J. McCormack, and A. Dorin, Evolutionary automated recognition and characterization of an individual’s artistic style, IEEE Congress on Evolutionary Computation (CEC), 2010.10.1109/CEC.2010.5585975Search in Google Scholar

[17] J. Koza, Genetic programming: On the programming of computers by means of natural selection, MIT Press, 1992.Search in Google Scholar

[18] J.R. Koza, Human-competitive results produced by genetic programming, Genetic Programming and Evolvable Machines 11 (2010), no. 3–4, 251–284.10.1007/s10710-010-9112-3Search in Google Scholar

[19] K.J. Lang and M.J. Witbrock, Learning to tell two spirals apart, Proceedings of the 1988 Connectionist Models Summer School, Morgan Kaufmann, 1988.Search in Google Scholar

[20] C.L. Liu, K. Nakashima, H. Sako, and H. Fujisawa, Handwritten digit recognition: benchmarking of state-of-the-art techniques, Pattern Recognition 36 (2003), no. 10, 2271–2285.10.1016/S0031-3203(03)00085-2Search in Google Scholar

[21] J. Losee, A historical introduction to the philosophy of science, 4th ed., Oxford University Press, 2001.Search in Google Scholar

[22] T. Menezes and C. Roth, Automatic discovery of agent based models: An application to social anthropology, Advs. Complex Syst. 16 (2013), no. 1350027.10.1142/S0219525913500276Search in Google Scholar

[23] ——Symbolic regression of generative network models, Scientific Reports 4 (2013), no. 6284.10.1038/srep06284Search in Google Scholar PubMed PubMed Central

[24] J.F. Miller, Cartesian genetic programming, Cartesian Genetic Programming (Julian F. Miller, ed.), Natural Computing Series, Springer, 2011, pp. 17–34.10.1007/978-3-642-17310-3_2Search in Google Scholar

[25] G. Olague and L. Trujillo, Interest point detection through multiobjective genetic programming, Applied Soft Computing 12 (2012), no. 8, 2566–2582.10.1016/j.asoc.2012.03.058Search in Google Scholar

[26] M. Oltean, C. Grosan, L. Diosan, and C. Mihăilă, Genetic programming with linear representation: a survey, International Journal on Artificial Intelligence Tools 18 (2009), no. 02, 197–238.10.1142/S0218213009000111Search in Google Scholar

[27] R. Poli, Parallel distributed genetic programming, New Ideas in Optimization (D. Corne, M. Dorigo, and F. Glover, eds.), McGraw- Hill, 1999.Search in Google Scholar

[28] R. Poli, W.B. Langdon, and N.F. McPhee, A field guide to genetic programming, Lulu Enterprises, 2008.Search in Google Scholar

[29] J.R. Quinlan, C4.5:programs for machine learning, Morgan Kaufmann, San Francisco, CA, USA, 1993.Search in Google Scholar

[30] M. Schmidt and H. Lipson, Distilling Free-Form Natural Laws from Experimental Data, Science 324 (2009), no. 5923, 81–85.10.1126/science.1165893Search in Google Scholar PubMed

[31] J.W. Smith, J.E. Everhart, W.C. Dickson, W.C. Knowler, and R.S. Johannes, Using the adap learning algorithm to forecast the onset of diabetes mellitus, Johns Hopkins APL Technical Digest 10 (1988), 262–266.Search in Google Scholar

[32] W. Street, W. Wolberg, and O. Mangasarian, Nuclear feature extraction for breast tumor diagnosis, IS&T/SPIE 1993 International Symposium on Electronic Imaging, vol. 1905, 1993, pp. 861–870.Search in Google Scholar

[33] J.B. Voytek and B. Voytek, Automated cognome construction and semi-automated hypothesis generation, Journal of Neuroscience Methods 208 (2012), no. 1, 92–100.10.1016/j.jneumeth.2012.04.019Search in Google Scholar PubMed PubMed Central

[34] M. Zhang, Improving object detection performance with genetic programming, International Journal on Artificial Intelligence Tools 16 (2007), no. 05, 849–873.10.1142/S0218213007003576Search in Google Scholar

Received: 2014-11-25
Accepted: 2015-1-7
Published Online: 2016-2-13
Published in Print: 2016-1-1

© 2016 Kowaliw and Doursat, published by De Gruyter Open

This work is licensed under the Creative Commons Attribution-NonCommercial-NoDerivatives 3.0 License.

Downloaded on 28.3.2024 from https://www.degruyter.com/document/doi/10.1515/math-2016-0005/html
Scroll to top button