-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #377 from Chang-SHAO/main
upload files
- Loading branch information
Showing
5 changed files
with
70 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
def test_optimize(): | ||
import numpy # engine for numerical computing | ||
from pypop7.benchmarks.base_functions import rosenbrock # function to be minimized | ||
from pypop7.optimizers.ds.cs import CS | ||
problem = {'fitness_function': rosenbrock, # to define problem arguments | ||
'ndim_problem': 2, | ||
'lower_boundary': -5.0 * numpy.ones((2,)), | ||
'upper_boundary': 5.0 * numpy.ones((2,))} | ||
options = {'max_function_evaluations': 5000, # to set optimizer options | ||
'seed_rng': 2022} | ||
cs = CS(problem, options) # to initialize the black-box optimizer class | ||
results = cs.optimize() # to run its optimization/evolution process | ||
assert results['n_function_evaluations'] == 5000 | ||
assert results['best_so_far_y'] < 1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
def test_optimize(): | ||
import numpy # engine for numerical computing | ||
from pypop7.benchmarks.base_functions import rosenbrock # function to be minimized | ||
from pypop7.optimizers.ds.gps import GPS | ||
problem = {'fitness_function': rosenbrock, # to define problem arguments | ||
'ndim_problem': 2, | ||
'lower_boundary': -5.0 * numpy.ones((2,)), | ||
'upper_boundary': 5.0 * numpy.ones((2,))} | ||
options = {'max_function_evaluations': 5000, # to set optimizer options | ||
'seed_rng': 2022} | ||
gps = GPS(problem, options) # to initialize the black-box optimizer class | ||
results = gps.optimize() # to run its optimization/evolution process | ||
assert results['n_function_evaluations'] == 5000 | ||
assert results['best_so_far_y'] < 10.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
def test_optimize(): | ||
import numpy # engine for numerical computing | ||
from pypop7.benchmarks.base_functions import rosenbrock # function to be minimized | ||
from pypop7.optimizers.ds.hj import HJ | ||
problem = {'fitness_function': rosenbrock, # to define problem arguments | ||
'ndim_problem': 2, | ||
'lower_boundary': -5.0 * numpy.ones((2,)), | ||
'upper_boundary': 5.0 * numpy.ones((2,))} | ||
options = {'max_function_evaluations': 5000, # to set optimizer options | ||
'seed_rng': 2022} | ||
hj = HJ(problem, options) # to initialize the black-box optimizer class | ||
results = hj.optimize() # to run its optimization/evolution process | ||
assert results['n_function_evaluations'] == 5000 | ||
assert results['best_so_far_y'] < 1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
def test_optimize(): | ||
import numpy # engine for numerical computing | ||
from pypop7.benchmarks.base_functions import rosenbrock # function to be minimized | ||
from pypop7.optimizers.ds.nm import NM | ||
problem = {'fitness_function': rosenbrock, # to define problem arguments | ||
'ndim_problem': 2, | ||
'lower_boundary': -5.0 * numpy.ones((2,)), | ||
'upper_boundary': 5.0 * numpy.ones((2,))} | ||
options = {'max_function_evaluations': 5000, # to set optimizer options | ||
'seed_rng': 2022} | ||
nm = NM(problem, options) # to initialize the black-box optimizer class | ||
results = nm.optimize() # to run its optimization/evolution process | ||
assert results['n_function_evaluations'] == 5000 | ||
assert results['best_so_far_y'] < 1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
def test_optimize(): | ||
import numpy # engine for numerical computing | ||
from pypop7.benchmarks.base_functions import rosenbrock # function to be minimized | ||
from pypop7.optimizers.ds.powell import POWELL | ||
problem = {'fitness_function': rosenbrock, # to define problem arguments | ||
'ndim_problem': 2, | ||
'lower_boundary': -5.0 * numpy.ones((2,)), | ||
'upper_boundary': 5.0 * numpy.ones((2,))} | ||
options = {'max_function_evaluations': 5000, # to set optimizer options | ||
'seed_rng': 2022} | ||
powel = POWELL(problem, options) # to initialize the black-box optimizer class | ||
results = powel.optimize() # to run its optimization/evolution process | ||
assert results['n_function_evaluations'] == 5000 | ||
assert results['best_so_far_y'] < 1.0 |