An evolutionary computation algorithm named CPIE in Python.
Project description
cpie
Clustering-based Promising Individual Enclosre(CPIE) in Python.
CPIE is an evolutionary computation algorithm which aims to search best parameters minimizing black-box function, especially UV-function.
UV-function has U-valley, which occupies large search space but contains only local optima, and V-valley, which occupies small search space but contains global optima.
e.g. Double-sphere: f(x) = min((x-2)^2 + 0.1, 10*(x+2)^2)
Installation
$ pip install cpie
CPIE depends on numpy, so please install numpy if needed.
Example of usage
First, you can import CPIE module as below.
from cpie import CPie
Then, you need to prepare objective function to be minimized.
def sphere(x):
return sum(xi*xi for xi in x)
def objective_func(x):
return min(sphere(x-2)+0.1, 10*sphere(x+2))
You can minimize objective function like below.
dimension = 2
bounds_min = [-10.0] * dimension
bounds_max = [ 10.0] * dimension
cpie = CPie(bounds_min, bounds_max, Ns=7*dimension)
for i in range(2000):
solution = cpie.sample()
f_value = objective_func(solution)
cpie.update(f_value)
cpie.print()
"bounds_min" and "bounds_max" means search space.
CPIE starts optimization with Ns solutions sampled unimormally in the search space.
After optimization loop, you can get optimized solution.
print("global best x", cpie.best.x)
print("global best f", cpie.best.f)
CPIE is niching algorithm, so you can also get best solutions from each mode.
bests = cpie.get_bests()
for i, b in enumerate(bests):
print("mode", i, " f", b.f)
example_main.py shows full example code.
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
Built Distribution
File details
Details for the file cpie-1.0.0.tar.gz
.
File metadata
- Download URL: cpie-1.0.0.tar.gz
- Upload date:
- Size: 8.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7ba85f1822e60ce16384fa1fd727b472e5e169e0639111951020c12ea327300a |
|
MD5 | fc3401b0b21fd9b5c31fc511b3b1dfc7 |
|
BLAKE2b-256 | d43b6f715fcbdd16d01779cb07c768814babc67b333bf44cf363fb55d59dd6b5 |
File details
Details for the file cpie-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: cpie-1.0.0-py3-none-any.whl
- Upload date:
- Size: 10.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 033aae641b146781e36ebc9c3e0123910be074d13d1b53090b32844eabef112a |
|
MD5 | afcc8ca71902e998c64e67e84ee8f33b |
|
BLAKE2b-256 | 4de185075e05055c5fb2f648571474fc06b1e1ae91d96c990260a1edc678562f |