A library that implements several derivation-free optimization algorithms (such as genetic optimization).
Project description
pyBlindOpt
A library that implements several derivation-free optimization algorithms (such as genetic optimization). Currently, it implements six different algorithms:
- Hill climbing is a mathematical optimization technique that belongs to the family of local search. It is an iterative algorithm that starts with an arbitrary solution to a problem and then attempts to find a better solution by making an incremental change to the solution.
- Simulated annealing is a probabilistic technique for approximating the global optimum of a given function. Specifically, it is a metaheuristic to approximate global optimization in a large search space for an optimization problem.
- Genetic algorithm is a metaheuristic inspired by the process of natural selection that belongs to the larger class of evolutionary algorithms (EA). Genetic algorithms are commonly used to generate high-quality solutions to optimization and search problems by relying on biologically inspired operators such as mutation, crossover, and selection.
- Differential evolution is a method that optimizes a problem by iteratively trying to improve a candidate solution with regard to a given measure of quality. Such methods are commonly known as metaheuristics as they make few or no assumptions about the problem being optimized and can search very large spaces of candidate solutions.
- Particle swarm optimization is a computational method that optimizes a problem by iteratively trying to improve a candidate solution with regard to a given measure of quality. It solves a problem by having a population of candidate solutions, here dubbed particles, and moving these particles around in the search space according to simple mathematical formula over the particle's position and velocity. Each particle's movement is influenced by its local best-known position but is also guided toward the best-known positions in the search space, which are updated as better positions are found by other particles.
- Grey Wolf Optimization (GWO) is a population-based meta-heuristics algorithm that simulates the leadership hierarchy and hunting mechanism of grey wolves in nature.
All the algorithms take advantage of the joblib library to speed up the objective function and cache the results. The code was optimized to a certain degree but was made for teaching purposes. Please consider other libraries if you are looking for a stable implementation, such as pymoo. Regardless, any reported issues will be fixed as possible.
Installation
The library can be used by adding this line to the requirement.txt file:
git+https://github.com/mariolpantunes/pyBlindOpt@main#egg=pyBlindOpt
Or add the following line to the requirements.txt file:
pyBlindOpt>=0.1.3
Documentation
This library was documented using the google style docstring, it can be accessed here. Run the following commands to produce the documentation for this library.
pdoc --math -d google -o docs pyBlindOpt
Authors
- Mário Antunes - mariolpantunes
License
This project is licensed under the MIT License - see the LICENSE file for details
Status
MIT License
Copyright (c) 2021 Mário Antunes
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Project details
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 pyblindopt-0.1.3.2.tar.gz
.
File metadata
- Download URL: pyblindopt-0.1.3.2.tar.gz
- Upload date:
- Size: 14.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c85e9946950109a5542b18753a0c8757f955413687250371ea6f989005d4910e |
|
MD5 | bc2c15b715d36a9ad45e4c886c3b8d94 |
|
BLAKE2b-256 | a866cc31ed590961fe3cfb9080ac522e3393e382957a3df3c3f345f37c5d3aa6 |
File details
Details for the file pyBlindOpt-0.1.3.2-py3-none-any.whl
.
File metadata
- Download URL: pyBlindOpt-0.1.3.2-py3-none-any.whl
- Upload date:
- Size: 21.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5efd50c6539d5f0032de16519d8ace2d3e9350b2c58beac827bee08107cec011 |
|
MD5 | 536df987003cb7bc9e7c3234acf1d5de |
|
BLAKE2b-256 | 357c35d28e227e6a9d1d4bf8be2a9950e5267cfa8c13cc37930c99c5e3fab210 |