From 2f060b1a8c464fd7d39aebab37e8ab3929932eb2 Mon Sep 17 00:00:00 2001 From: Benjamin <83923053+Benjamincf0@users.noreply.github.com> Date: Fri, 31 Jul 2026 17:09:50 -0400 Subject: [PATCH] Fix typo in optimization configuration explanation --- tutorials/getting_started/getting_started.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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",