Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tutorials/getting_started/getting_started.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down