File tree 1 file changed +4
-4
lines changed
optimization_tutorial/optimizers/random_restart_hill_climbing
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 23
23
24
24
explanation_ = """
25
25
Random restart hill climbing works by starting a hill climbing search and jumping to a random
26
- new position after `n_iter_restart` iterations.
26
+ new position after `n_iter_restart` iterations.
27
+ Those restarts should prevent the algorithm getting stuck in local optima.
27
28
"""
28
29
29
30
para_d = dict ()
39
40
40
41
41
42
good_ = """
42
- - Good for convex and nonconvex optimization problems
43
- -
43
+ - Expect good results for convex and nonconvex optimization problems.
44
44
"""
45
45
bad_ = """
46
46
- Worse than regular hill climbing algorithm for convex optimization
53
53
54
54
implementation_ = """
55
55
The random restart hill climbing inherits its behaviour from the regular hill climbing and
56
- expands it by jumping to a random position.
56
+ expands it by jumping to a random position during the iteration step .
57
57
"""
58
58
59
59
overview_app_args_d = {
You can’t perform that action at this time.
0 commit comments