Package for benchmark for the Real Optimization session on IEEE Congress on Evolutionary Computation CEC'2005
Project description
This is a Python wrapping using the C++ Implementation of the test suite for the Special Session on Large Scale Global Optimization at 2005 IEEE Congress on Evolutionary Computation.
Note
If you are to use any part of this code, please cite the following publications:
Suganthan, N. Hansen, J. J. Liang, K. Deb, Y.-P. Chen, A. Auger and S. Tiwari, “Problem Definitions and Evaluation Criteria for the CEC 2005 Special Session on Real-Parameter Optimization”, Technical Report, Nanyang Technological University, Singapore, May 2005 AND KanGAL Report #2005005, IIT Kanpur, India.
http://www3.ntu.edu.sg/home/EPNSugan/index_files/CEC-05/CEC05.htm
Requirements
GNU Make
GNU G++
Python
Cython
Testing Environment
Debian GNU/Linux jessie/sid
GNU Make 3.81
g++ (Debian 4.7.3-4) 4.7.3
Python 2.7 and Python 3.2
numpy 1.8.1
cython 0.20.1
Results with Travis-CI
Instalation
Very easy, pip install cec2005real ;-).
You can also download from https://github.com/dmolina/cec2005real, and do python setup.py install [–user]. (the option –user is for installing the package locally, as a normal user (interesting when you want to run the experiments in a cluster/server without administration permissions).
To compile the source code in C++
The source code in C++ is also available. If you want to compile only the C++ version type in ‘make’ in the root directory of source code.
There are two equivalents demo executables: demo and demo2.
REMEMBER: To run the C++ version the directory cdatafiles must be available in the working directory. In the python version, these files are included in the packages, so it is not needed.
Tests
The source code has tests to check the information about each function, and the results obtained with the C version using the solution np.zeros(10) (a solution of zeros).
Quickstart
The package is very simple to use. There is a class Function with two functions:
Give information for each function: their optimum, their dimensionality, the domain search, and the expected threshold to achieve the optima.
Give a fitness function to evaluate solutions. It expect that these solutions are numpy arrays (vectors) but it can also work with normal arrays.
These two functionalities are done with two methods in Benchmark class:
get_num_functions()
Return the number of functions in the benchmarks (15)
get_info()
Return an array with the following information, where /function_id/ is the identifier of the function, a int value between 1 and 15.
- lower, upper
lower and upper boundaries of the domain search.
- best
Optimum to achieve, it is always zero, thus it can be ignored.
- threshold
Threshold to obtain, it is always zero, thus it can also be ignored.
- dimension
Dimension for the function, it is always 1000.
It can be noticed that several data are the same for all functions. It is made for maintaining the same interface to other cec20xx competitions.
get_eval_function()
It returns the fitness function to evaluate the solutions.
Examples of use
Obtain information about one function
>>> from cec2005real.cec2005 import Function >>> fbench = Function(1, 10) >>> fbench.get_info() {'best': 0.0, 'dimension': 1000, 'lower': -100.0, 'threshold': 0, 'upper': 100.0}
Create random solution for the search
>>> from numpy.random import rand >>> info = fbench.get_info() >>> dim = info['dimension'] >>> sol = info['lower']+rand(dim)*(info['upper']-info['lower'])
Evaluate a solution
>>> fun_fitness = fbench.get_eval_function() >>> fun_fitness(sol) 464006824710.75995
Contact
- Python package
Daniel Molina @ Computer Science Deparment, University of Cadiz Please feel free to contact me at <daniel.molina@uca.es> for any enquiries or suggestions.
Last Updated:
C++ version 2005
Python wrapping <2015-10-30>
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file cec2005real-0.1.tar.gz
.
File metadata
- Download URL: cec2005real-0.1.tar.gz
- Upload date:
- Size: 4.0 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a82a6d0b8538ff9bc7e5cf73a56ece53717380c8fbcdae7452eb9538736f1055 |
|
MD5 | 916109d2d2f2cbb269d10f59feb90378 |
|
BLAKE2b-256 | 673022157a143d7c87f1577eb6bfe027e9593850c91ec70bc3f8146f2a46ddda |