Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/robertanto/migration-on-pygmo-2
https://github.com/robertanto/migration-on-pygmo-2
Last synced: about 4 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/robertanto/migration-on-pygmo-2
- Owner: robertanto
- License: gpl-3.0
- Created: 2019-05-21T07:13:13.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-05-21T07:31:40.000Z (over 5 years ago)
- Last Synced: 2024-11-11T06:05:46.413Z (about 2 months ago)
- Language: Python
- Size: 19.5 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Migration-on-PyGMO-2
A python 3 module which implements ring and chain migration for [PyGMO 2](https://esa.github.io/pagmo2/).
>PyGMO is a scientific library for massively parallel optimization. It is built around the idea of providing a unified interface to optimization algorithms and to optimization problems and to make their deployment in massively parallel environments easy.>Efficient implementantions of bio-inspired and evolutionary algorithms are sided to state-of the art optimization algorithms (Simplex Methods, SQP methods, interior points methods ….) and can be easily mixed (also with your newly invented algorithms) to build a super-algorithm exploiting algoritmic cooperation via the asynchronous, generalized island model.
>Pagmo and pygmo can be used to solve constrained, unconstrained, single objective, multiple objective, continuous and integer optimization problems, stochastic and deterministic problems, as well as to perform research on novel algorithms and paradigms and easily compare them to state of the art implementations of established ones.
## Usage ##
```python
prob = pg.problem(pg.schwefel(2))
algo = pg.algorithm(pg.sade(gen=30))
algo.set_verbosity(10)
archi = pg.archipelago(6, algo=algo, prob=prob, pop_size=4)print(archi[0].get_population().get_x())
ringMigration(archi,plusOne=True)
print(archi[0].get_population().get_x())
```## Author
**Antonio Roberto** - [Linkedin](https://www.linkedin.com/in/antonio-roberto-1b288b120/)
## License
This project is licensed under the GNU GENERAL PUBLIC LICENSE - see the [LICENSE.md](https://github.com/antonioroberto1994/Migration-on-PyGMO-2/blob/master/LICENSE) file for details