/optimiser

Generic implementations of numerical optimization methods. As of now, only cross-entropy method is here.

Primary LanguagePythonMIT LicenseMIT

Build Status codecov Maintainability PyPI version

Optimiser

Overview

This Python package is a library with implementations of some optimization techniques. Current content is shown in the below table:

Method Implementation
Cross-Entropy optimize_with_crossentropy_method

Of course, just one function is not that much...

Installation

pip install optimiser

Usage

All functions from the package (especially, those of them that are designed for end users) have a built-in documentation that describes every argument. To read it, look at a docstring or, alternatively, run from Python shell a command like this one:

help(optimize_with_crossentropy_method)