diff --git a/tutorials/getting_started/getting_started.ipynb b/tutorials/getting_started/getting_started.ipynb index 54ea41e8c42..38349723b21 100644 --- a/tutorials/getting_started/getting_started.ipynb +++ b/tutorials/getting_started/getting_started.ipynb @@ -124,7 +124,7 @@ "This method expects a string `objective`, an expression containing either a single metric to maximize, a linear combination of metrics to maximize, or a tuple of multiple metrics to jointly maximize.\n", "These expressions are parsed using [SymPy](https://www.sympy.org/en/index.html). For example:\n", "* `\"score\"` would direct Ax to maximize a metric named score\n", - "* `\"-loss\"` would direct Ax to Ax to minimize a metric named loss\n", + "* `\"-loss\"` would direct Ax to minimize a metric named loss\n", "* `\"task_0 + 0.5 * task_1\"` would direct Ax to maximize the sum of two task scores, downweighting task_1 by a factor of 0.5\n", "* `\"score, -flops\"` would direct Ax to simultaneously maximize score while minimizing flops\n", "\n",