-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_optimizers.py
More file actions
78 lines (62 loc) · 2.02 KB
/
test_optimizers.py
File metadata and controls
78 lines (62 loc) · 2.02 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
from gob.benchmarks import *
from gob.optimizers import *
pygkls = PyGKLS(2, 15, [-100, 100], -100, smoothness="ND", gen=42)
f = Square()
bounds = augment_dimensions(f.visual_bounds, 2) # f.visual_bounds
n_particles = 150
iter = 1000
sigma = 1 / n_particles**2
verbose = False
opt = SBS(
bounds=bounds, n_particles=n_particles, iter=iter, sigma=sigma, verbose=verbose
)
res = opt.minimize(f)
print(f"Results for {opt} on {f}: {res[1]}")
opt = Langevin(bounds=bounds, n_particles=n_particles, iter=iter, verbose=verbose)
res = opt.minimize(f)
print(f"Results for {opt} on {f}: {res[1]}")
opt = PSO(bounds=bounds, n_particles=n_particles, iter=iter, verbose=verbose)
res = opt.minimize(f)
print(f"Results for {opt} on {f}: {res[1]}")
opt = CBO(bounds=bounds, n_particles=n_particles, iter=iter, verbose=verbose)
res = opt.minimize(f)
print(f"Results for {opt} on {f}: {res[1]}")
opt = Full_Noise(bounds=bounds, n_particles=n_particles, iter=1, verbose=verbose)
res = opt.minimize(f)
print(f"Results for {opt} on {f}: {res[1]}")
opt = SMD_Langevin(
bounds=bounds,
n_particles=n_particles,
iter=iter,
moment="VAR",
verbose=verbose,
)
res = opt.minimize(f)
print(f"Results for {opt} on {f}: {res[1]}")
opt = SMD_SBS(
bounds=bounds,
n_particles=n_particles,
iter=iter,
moment="MVAR",
verbose=verbose,
)
res = opt.minimize(f)
print(f"Results for {opt} on {f}: {res[1]}")
opt = SMD_CBO(
bounds=bounds,
n_particles=n_particles,
iter=iter,
moment="MVAR",
verbose=verbose,
)
res = opt.minimize(f)
print(f"Results for {opt} on {f}: {res[1]}")
opt = GCN_Langevin(bounds=bounds, n_particles=n_particles, iter=iter, verbose=verbose)
res = opt.minimize(f)
print(f"Results for {opt} on {f}: {res[1]}")
opt = GCN_SBS(bounds=bounds, n_particles=n_particles, iter=iter, verbose=verbose)
res = opt.minimize(f)
print(f"Results for {opt} on {f}: {res[1]}")
opt = GCN_CBO(bounds=bounds, n_particles=n_particles, iter=iter, verbose=verbose)
res = opt.minimize(f)
print(f"Results for {opt} on {f}: {res[1]}")