Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Python module for multiple variable global optimization [closed]

I have been looking for a python module that implements the common techniques of global optimization (finding the global minimum of a function in N dimensions) without success.

If you heard about a simulated annealing or genetic algorithm implementation in python, please share.

like image 344
Mermoz Avatar asked Nov 19 '10 17:11

Mermoz


1 Answers

Scipy's optimize module has a dual_annealing function that might fit your needs. Also, you should check out the PyEvolve module for doing a genetic algorithm.

like image 71
Justin Peel Avatar answered Oct 22 '22 08:10

Justin Peel