Skip to main content

Description

This package is a Python aims at providing a range of nature-inspired optimisation algorithms. The purpose of an optimisation algorithm is to find the maximum or minimum of a function.
Genetic algorithms are particularly useful when it comes to high-dimensional, non-linear and non-convex problems (e.g. finding a needle in a 10-dimensional hay). They have a wide range of application from supply chain optimisation to hyperparameter tuning. This first version includes an implementation of genetic algorithm with "regularized evolution".

Genetic algorithms are very useful in machine learning, especially in hyperparameter tuning. The example folder contains two examples of genetic algorithms used to:

  1. Optimise the architecture and hyperparameters of a Neural Network (link)
  2. Tune the hyperparameters of a Support Vector Machine and XGBoost model (link)

The full documentation can be found here.

Installation

This package can be installed with "pip" or by cloning this repository

$ pip install evolution_opt

Dependencies

To install and run evolution_opt make sure that you have installed the following packages

$ pip install numpy pandas scipy matplotlib

Importing evolution_opt

import numpy as np
import pandas as pd
from evolution_opt.genetic import *

Example Usage

1) Define a function to be optimised

This function has to take a dictionary of parameter as argument:

def difficult_problem(param_dict):
    result = param_dict['x']**2 + (param_dict['y']+1)**2
    if param_dict['luck'] == 'lucky':
        pass
    else:
        result += 10
    return result

This function could be any process that takes parameters as input and outputs a scalar value.

It could evaluate a model's cross-validation score based on given hyperparameter values, a profit/cost function, the efficiency of a resourcing plan... The possibilities are limitless.

2) Define a search space

search_space = [
    Integer(-100,100, 'x'),
    Real(-100,100, 'y'),
    Categorical(['lucky', 'unlucky'], 'luck')
]

The search space can be composed of Integer, Real and Categorical variables. Numeric parameters are initialised with a lower bound, upper bound and a parameter name. Categorical parameters require a list of possible values and a parameter name.

3) Run the evolutionary algorithm

best_params = optimise(difficult_problem,search_space,minimize=True, 
                           population_size=20,n_rounds=500)   

# Prints:
# Number of Iterations: 500
# Best score: 0.00410559779230605
# Best parameters: {'x': -0.0, 'y': -1.0640749388786759, 'luck': 'lucky'}

Credits

Release files for evolution-opt 0.0.5

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for evolution-opt 0.0.5
File Size Uploaded
evolution_opt-0.0.5.tar.gz 10.6 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for evolution-opt 0.0.5
File Interpreter ABI Platform
evolution_opt-0.0.5-py3-none-any.whl Python 3 none any Details

Total release size: 21.5 kB

Release files / evolution_opt-0.0.5.tar.gz

Download URL evolution_opt-0.0.5.tar.gz
Size 10.6 kB
Tags Source
SHA-256 checksum
How to use checksums
eddc48ce520401a109b530a512e5c870b7625cc8f9506329ddde865d327cefcb
BLAKE2b-256 checksum
How to use checksums
f704b31a27c3773e9e22f2bf76472a30634c98bd369be8b2ec3242a76d7609b7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.2.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.7.6

Release files / evolution_opt-0.0.5-py3-none-any.whl

Download URL evolution_opt-0.0.5-py3-none-any.whl
Size 10.9 kB
Tags Python 3
SHA-256 checksum
How to use checksums
84aa32711db51776ecd868fa73ce5215db0f5cc86c8ca770ac0387dd88f1a4b3
BLAKE2b-256 checksum
How to use checksums
081eb8ef8400b9a4320c4840568ed347bdca11392714ff156e23bb33a10bbbb4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.2.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.7.6

Release history Release notifications | RSS feed

This release

0.0.5 This release

2 release files

0.0.4

2 release files

0.0.3

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page