4

Using a Framework to Compare Algorithm Performance

 3 years ago
source link: https://datacrayon.com/posts/search-and-optimisation/practical-evolutionary-algorithms/using-a-framework-to-compare-algorithm-performance/
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

Preamble

import numpy as np                   # for multi-dimensional containers
import pandas as pd                  # for DataFrames
import platypus as plat              # multi-objective optimisation framework

Introduction

When preparing to implement multi-objective optimisation experiments, it's often more convenient to use a ready-made framework/library instead of programming everything from scratch. There are many libraries and frameworks that have been implemented in many different programming languages. With our focus on multi-objective optimisation, our choice is an easy one. We will choose Platypus which has a focus on multi-objective problems and optimisation.

Platypus is a framework for evolutionary computing in Python with a focus on multiobjective evolutionary algorithms (MOEAs). It differs from existing optimization libraries, including PyGMO, Inspyred, DEAP, and Scipy, by providing optimization algorithms and analysis tools for multiobjective optimization.

In this section, we will use the Platypus framework to compare the performance of the Non-dominated Sorting Genetic Algorithm II (NSGA-II)1 and the Pareto Archived Evolution Strategy (PAES)2. To do this, we will use them to generate solutions to four problems in the DTLZ test suite3.

Because both of these algorithms are stochastic, meaning that they will produce different results every time they are executed, we will select a sufficient sample size of 30 per algorithm per test problem. We will also use the default configurations for all the test problems and algorithms employed in this comparison. We will use the Hypervolume Indicator (introduced in earlier sections) as our performance metric.

Executing an Experiment and Generating Results

In this section, we will using the Platypus implementation of NSGA-II and PAES to generate solutions for the DTLZ1, DTLZ2, DTLZ3, and DTLZ4 test problems.

First, we will create a list named problems where each element is a DTLZ test problem that we want to use.

problems = [plat.DTLZ1, plat.DTLZ2, plat.DTLZ3, plat.DTLZ4]

Similarly, we will create a list named algorithms where each element is an algorithm that we want to compare.

algorithms = [plat.NSGAII, plat.PAES]

Now we can execute an experiment, specifying the number of function evaluations, nfe=10,000nfe=10,000nfe=10,000, and the number of executions per problem, seeds=30seeds=30seeds=30. This may take some time to complete depending on your processor speed and the number of function evaluations.

Warning

Running the code below will take a long time to complete even if you have good hardware. To put things into perspective, you will be executing an optimisation process 30 times, per 4 test problems, per 2 algorithms. That's 240 executions of 10,000 function evaluations, totalling in at 2,400,000 function evaluations. You may prefer to change the value of seeds below to something smaller like 5 for now.

We are also using the ProcessPoolEvaluator in Platypus to speed things up.

with plat.ProcessPoolEvaluator(10) as evaluator:
    results = plat.experiment(algorithms, problems, seeds=30, nfe=10000, evaluator=evaluator)

Once the above execution has completed, we can initialize an instance of the hypervolume indicator provided by Platypus.

hyp = plat.Hypervolume(minimum=[0, 0, 0], maximum=[1, 1, 1])

Now we can use the calculate function provided by Platypus to calculate all our hypervolume indicator measurements for the results from our above experiment.

hyp_result = plat.calculate(results, hyp)

Finally, we can display these resultsu using the display function provided by Platypus.

plat.display(hyp_result, ndigits=3)
NSGAII
    DTLZ1
        Hypervolume : [0.699, 0.024, 0.44, 0.787, 0.122, 0.513, 0.686, 0.044, 0.472, 0.103, 0.439, 0.795, 0.103, 0.769, 0.1, 0.045, 0.0, 0.0, 0.017, 0.0, 0.0, 0.617, 0.0, 0.0, 0.0, 0.199, 0.0, 0.522, 0.0, 0.002]
    DTLZ2
        Hypervolume : [0.209, 0.209, 0.209, 0.209, 0.209, 0.209, 0.209, 0.209, 0.209, 0.209, 0.209, 0.209, 0.209, 0.209, 0.209, 0.209, 0.209, 0.209, 0.209, 0.209, 0.209, 0.209, 0.209, 0.209, 0.209, 0.209, 0.209, 0.209, 0.209, 0.209]
    DTLZ3
        Hypervolume : [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]
    DTLZ4
        Hypervolume : [0.0, 0.0, 0.0, 0.209, 0.209, 0.209, 0.209, 0.0, 0.0, 0.0, 0.209, 0.209, 0.0, 0.209, 0.209, 0.209, 0.209, 0.209, 0.209, 0.0, 0.209, 0.0, 0.209, 0.209, 0.0, 0.0, 0.0, 0.0, 0.209, 0.0]
PAES
    DTLZ1
        Hypervolume : [0.73, 0.697, 0.841, 0.842, 0.602, 0.829, 0.634, 0.861, 0.838, 0.628, 0.853, 0.73, 0.605, 0.662, 0.616, 0.843, 0.467, 0.835, 0.822, 0.824, 0.826, 0.702, 0.857, 0.598, 0.236, 0.835, 0.766, 0.77, 0.68, 0.783]
    DTLZ2
        Hypervolume : [0.195, 0.196, 0.192, 0.191, 0.192, 0.191, 0.182, 0.186, 0.192, 0.173, 0.186, 0.186, 0.152, 0.197, 0.194, 0.194, 0.177, 0.188, 0.189, 0.155, 0.178, 0.195, 0.189, 0.191, 0.196, 0.18, 0.186, 0.194, 0.152, 0.196]
    DTLZ3
        Hypervolume : [0.027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.024, 0.0, 0.109, 0.0, 0.068, 0.0, 0.037, 0.0, 0.087, 0.0, 0.076, 0.0, 0.0, 0.092, 0.0, 0.072, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]
    DTLZ4
        Hypervolume : [0.0, 0.0, 0.0, 0.0, 0.0, 0.148, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]

Statistical Comparison of the Hypervolume Results

Now that we have a data structure that has been populated with results from each execution of the algorithms, we can do a quick statistical comparison to give us some indication as to which algorithmn (NSGA-II or PAES) performs better on each problem.

We can see in the output of display above that the data structure is organised as follows:

  • Algorithm name (e.g. NSGAII)
    • Problem name (e.g. DTLZ1)
      • Performance metric (e.g. Hypervolume)
        • The score for each run (e.g. 30 individual scores).

As a quick test, let's try and get the hypervolume indicator score for the first execution of NSGA-II on DTLZ1.

hyp_result['NSGAII']['DTLZ1']['Hypervolume'][0]
0.6994730803830401

To further demonstrate how this works, let's also get the hypervolume indicator score for the sixth execution of NSGA-II on DTLZ1.

hyp_result['NSGAII']['DTLZ1']['Hypervolume'][5]
0.5133530126219944

Finally, let's get the hypervolume indicator scores for all executions of NSGA-II on DTLZ1.

hyp_result['NSGAII']['DTLZ1']['Hypervolume']
[0.6994730803830401,
 0.023633507390145952,
 0.43992961322697366,
 0.7874948337892063,
 0.12188120046384762,
 0.5133530126219944,
 0.6862515722411968,
 0.044290599003643356,
 0.471622401547617,
 0.10284908978058507,
 0.4392461927994993,
 0.7950275064573571,
 0.10266551759637746,
 0.7691174571576805,
 0.09952335665103744,
 0.04478737965014432,
 0.0,
 0.0,
 0.017045525592154418,
 0.0,
 0.0,
 0.6171522594782475,
 0.0,
 0.0,
 0.0,
 0.19925123811511297,
 0.0,
 0.5223248110288524,
 0.0,
 0.0020909300897199268]

Perfect. Now we can use numpy to calculate the mean hypervolume indicator value for all of our executions of NSGA-II on DTLZ1.

np.mean(hyp_result['NSGAII']['DTLZ1']['Hypervolume'])
0.24996703616881444

Let's do the same for PAES.

np.mean(hyp_result['PAES']['DTLZ1']['Hypervolume'])
0.7271208306100885

We can see that the mean hypervolume indicator value for PAES on DTLZ1 is higher than that of NSGA-II on DTLZ1. A higher hypervolume indicator value indicates better performance, so we can tentatively say that PAES outperforms NSGA-II on our configuration of DTLZ1 according to the hypervolume indicator. Of course, we haven't determined if this result is statistically significant.

Let's create a DataFrame where each column refers to the mean hypervolume indicator values for the test problems DTLZ1, DTLZ2, DTLZ3, and DTLZ4, and each row represent the performance of an algorithm (in this case, PAES and NSGA-II).

df_hyp_results = pd.DataFrame(index = hyp_result.keys())

for key_algorithm, algorithm in hyp_result.items():
    for key_problem, problem in algorithm.items():
        for hypervolumes in problem['Hypervolume']:
            df_hyp_results.loc[key_algorithm,key_problem] = np.mean(hypervolumes)
            
df_hyp_results

DTLZ1 DTLZ2 DTLZ3 DTLZ4 NSGAII 0.002091 0.208583 0.0 0.0 PAES 0.783057 0.195858 0.0 0.0

Now we have an overview of how our selected algorithms performed on the selected test problems according to the hypervolume indicator. Personally, I find it easier to compare algorithm performance when each column represents a different algorithm rather than a problem.

df_hyp_results.transpose()

NSGAII PAES DTLZ1 0.002091 0.783057 DTLZ2 0.208583 0.195858 DTLZ3 0.000000 0.000000 DTLZ4 0.000000 0.000000

Without consideration for statistical significance, which algorithm performs best on each test problem?

Conclusion

In this section we have demonstrated how we can compare two popular multi-objective evolutionary algorithms on a selection of four test problems using the hypervolume indicator to measure their performance. In this case, we simply compared the mean of a sample of executions per problem per algorithm without consideration for statistical significance, however, this it is important to take this into account to ensure that any differences haven't occurred by chance.

Exercise

Create your own experiment, but this time include different algorithms and problems and determine which algorithm performs the best on each problem.


  1. Deb, K., Pratap, A., Agarwal, S., & Meyarivan, T. A. M. T. (2002). A fast and elitist multiobjective genetic algorithm: NSGA-II. IEEE transactions on evolutionary computation, 6(2), 182-197. 

  2. Knowles, J., & Corne, D. (1999, July). The pareto archived evolution strategy: A new baseline algorithm for pareto multiobjective optimisation. In Congress on Evolutionary Computation (CEC99) (Vol. 1, pp. 98-105). 

  3. Deb, K., Thiele, L., Laumanns, M., & Zitzler, E. (2002, May). Scalable multi-objective optimization test problems. In Proceedings of the 2002 Congress on Evolutionary Computation. CEC'02 (Cat. No. 02TH8600) (Vol. 1, pp. 825-830). IEEE. 


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK