Skip to content

Commit b504772

Browse files
committed
finish random restart hill climbing page
1 parent ca87297 commit b504772

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

optimization_tutorial/optimizers/random_restart_hill_climbing/random_restart_hill_climbing_app.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323

2424
explanation_ = """
2525
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.
2728
"""
2829

2930
para_d = dict()
@@ -39,8 +40,7 @@
3940

4041

4142
good_ = """
42-
- Good for convex and nonconvex optimization problems
43-
-
43+
- Expect good results for convex and nonconvex optimization problems.
4444
"""
4545
bad_ = """
4646
- Worse than regular hill climbing algorithm for convex optimization
@@ -53,7 +53,7 @@
5353

5454
implementation_ = """
5555
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.
5757
"""
5858

5959
overview_app_args_d = {

0 commit comments

Comments
 (0)