1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
#!/usr/bin/env python
#
# Author: Mike McKerns (mmckerns @caltech and @uqfoundation)
# Copyright (c) 1997-2016 California Institute of Technology.
# Copyright (c) 2016-2025 The Uncertainty Quantification Foundation.
# License: 3-clause BSD. The full license text is available at:
# - https://github.com/uqfoundation/pathos/blob/master/LICENSE
"""
Solve Nth-order Chebyshev polynomial coefficients with Differential Evolution.
Launch optimizers with python's map.
Requires: development version of mystic, pathos
http://pypi.python.org/pypi/mystic
http://pypi.python.org/pypi/pathos
"""
def optimize(solver, mapper, nodes, target='rosen', **kwds):
if target == 'rosen': # 3d-rosenbrock
ndim = 3
actual_coeffs = [1.0] * ndim
pprint = list
else: # 4th-order chebyshev
from poly import chebyshev4coeffs as actual_coeffs
ndim = len(actual_coeffs)
from mystic.math import poly1d as pprint
# number of trials
N = nodes
print("Number of trials: %s" % N)
print("===============")
# initial guess
import random
x0 = ([random.uniform(-100,100) for i in range(ndim)] for i in range(N))
# minimize the function
results = mapper(nodes).map(solver, x0)
# find the results with the lowest energy
from optimize_helper import best_results
solution = best_results(results)
print("===============")
print("Actual params:\n %s" % pprint(actual_coeffs))
print("Solved params:\n %s" % pprint(solution[0]))
print("Function value: %s" % solution[1])
print("Total function evals: %s" % solution[4])
return
# build the solver-model pairs
def diffev_chebyshev(x0, *args, **kwds):
# Differential Evolution solver
from optimize_helper import diffev as the_solver
# Chebyshev cost function
from poly import chebyshev4cost as the_model
return the_solver(the_model, x0, monitor=True, *args, **kwds)
# get the map functions
from pathos.serial import SerialPool as serial
if __name__ == '__main__':
target = 'cheby'
print("Function: %s" % target)
print("Solver: %s" % 'diffev')
optimize(diffev_chebyshev, serial, nodes=1, target=target)
# end of file
|