-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy path_repeat_jade.py
More file actions
87 lines (78 loc) · 3.37 KB
/
_repeat_jade.py
File metadata and controls
87 lines (78 loc) · 3.37 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
"""Repeat the following paper for `JADE`:
Zhang, J., and Sanderson, A. C. 2009.
JADE: Adaptive differential evolution with optional external archive.
IEEE Transactions on Evolutionary Computation, 13(5), 945–958.
https://ieeexplore.ieee.org/document/5208221/
Luckily our Python code could repeat the data reported in the original paper *well*.
Therefore, we argue that its repeatability could be **well-documented**.
"""
import numpy as np
from pypop7.benchmarks.base_functions import sphere, step, rosenbrock, rastrigin, ackley
from pypop7.optimizers.de.jade import JADE
if __name__ == '__main__':
ndim_problem = 30
problem = {'fitness_function': sphere,
'ndim_problem': ndim_problem,
'lower_boundary': -100*np.ones((ndim_problem,)),
'upper_boundary': 100*np.ones((ndim_problem,))}
options = {'max_function_evaluations': 1500*100,
'n_individuals': 100,
'seed_rng': 0, # undefined in the original paper
}
jade = JADE(problem, options)
results = jade.optimize()
print(results)
print(results['best_so_far_y'])
# 1.2487346869372509e-64 vs 1.3e-54 (from the original paper)
problem = {'fitness_function': step,
'ndim_problem': ndim_problem,
'lower_boundary': -100*np.ones((ndim_problem,)),
'upper_boundary': 100*np.ones((ndim_problem,))}
options = {'max_function_evaluations': 1500*100,
'n_individuals': 100,
'seed_rng': 0, # undefined in the original paper
}
jade = JADE(problem, options)
results = jade.optimize()
print(results)
print(results['best_so_far_y'])
# 0.0 vs 0 (from the original paper)
problem = {'fitness_function': rosenbrock,
'ndim_problem': ndim_problem,
'lower_boundary': -30*np.ones((ndim_problem,)),
'upper_boundary': 30*np.ones((ndim_problem,))}
options = {'max_function_evaluations': 3000*100,
'n_individuals': 100,
'seed_rng': 0, # undefined in the original paper
}
jade = JADE(problem, options)
results = jade.optimize()
print(results)
print(results['best_so_far_y'])
# 0.0 vs 3.2e-01 (from the original paper)
problem = {'fitness_function': rastrigin,
'ndim_problem': ndim_problem,
'lower_boundary': -5.12*np.ones((ndim_problem,)),
'upper_boundary': 5.12*np.ones((ndim_problem,))}
options = {'max_function_evaluations': 5000*100,
'n_individuals': 100,
'seed_rng': 0, # undefined in the original paper
}
jade = JADE(problem, options)
results = jade.optimize()
print(results)
print(results['best_so_far_y'])
# 0.0 vs 0 (from the original paper)
problem = {'fitness_function': ackley,
'ndim_problem': ndim_problem,
'lower_boundary': -32*np.ones((ndim_problem,)),
'upper_boundary': 32*np.ones((ndim_problem,))}
options = {'max_function_evaluations': 2000*100,
'n_individuals': 100,
'seed_rng': 0, # undefined in the original paper
}
jade = JADE(problem, options)
results = jade.optimize()
print(results)
print(results['best_so_far_y'])
# 3.9968028886505635e-15 vs 4.4e-15 (from the original paper)