Skip to content

Commit

Permalink
#1491 correct typo in nelder-mead and add a clarification for ask-tel…
Browse files Browse the repository at this point in the history
…l usage
  • Loading branch information
ben18785 committed Dec 5, 2023
1 parent 211662f commit 88ad47c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/optimisation/nelder-mead.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"\n",
"This example shows you how to run a local optimisation with the [Nelder-Mead](http://pints.readthedocs.io/en/latest/optimisers/nelder_mead.html) downhill simplex method.\n",
"\n",
"The [Nelder-Mead method](https://en.wikipedia.org/wiki/Nelder–Mead_method) is a classical (deterministic) derivative-free optimisation method. It can be very fast if started near the true solution, but can easily get stuck on difficult problems. Nelder-Mead is essentially sequential in nature and can not easily be parallelised."
"The [Nelder-Mead method](https://en.wikipedia.org/wiki/Nelder–Mead_method) is a classical (deterministic) derivative-free optimisation method. It can be very fast if started near the true solution, but can easily get stuck on difficult problems. Nelder-Mead is essentially sequential in nature and cannot easily be parallelised."
]
},
{
Expand Down Expand Up @@ -74,7 +74,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"We can use the ask-and-tell interface to visualise its progress through the search-space:"
"For a new run of the algorithm, we can use the ask-and-tell interface to visualise its progress through the search-space:"
]
},
{
Expand Down Expand Up @@ -148,7 +148,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.11.6"
"version": "3.9.7"
}
},
"nbformat": 4,
Expand Down

0 comments on commit 88ad47c

Please sign in to comment.