Skip to content

Commit dd8b120

Browse files
jglumeta-codesync[bot]
authored andcommitted
docs: fix typo in automating.ipynb (facebook#5191)
Summary: FIx typo in https://ax.dev/docs/tutorials/automating/ Pull Request resolved: facebook#5191 Reviewed By: dme65 Differential Revision: D106564654 Pulled By: saitcakmak fbshipit-source-id: 90e434b327301d3ce3ba6802bddb0430c64daeba
1 parent 900cf16 commit dd8b120

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tutorials/automating/automating.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
"source": [
1414
"# Automating Orchestration\n",
1515
"Previously, we've demonstrated [using Ax for ask-tell optimization](../getting_started), a paradigm in which we \"ask\" Ax for candidate configurations and \"tell\" Ax our observations.\n",
16-
"This can be effective in many scenerios, and it can be automated through use of flow control statements like `for` and `while` loops.\n",
17-
"However there are some situations where it would be beneficial to allow Ax to orchestrate the entire optimization: deploying trials to external systems, polling their status, and reading reading their results.\n",
16+
"This can be effective in many scenarios, and it can be automated through use of flow control statements like `for` and `while` loops.\n",
17+
"However there are some situations where it would be beneficial to allow Ax to orchestrate the entire optimization: deploying trials to external systems, polling their status, and reading their results.\n",
1818
"This can be common in a number of real world engineering tasks, including:\n",
1919
"* **Large scale machine learning experiments** running workloads on high-performance computing clusters\n",
2020
"* **A/B tests** conducted using an external experimentation platform\n",
@@ -165,7 +165,7 @@
165165
"`poll_trial` queries the external system to see if the trial has completed, failed, or if it's still running.\n",
166166
"In this mock example, we will check to see how many seconds have elapsed since the `run_trial` was called and only report a trial as completed once 5 seconds have elapsed.\n",
167167
"\n",
168-
"Runner's may also optionally implement a `stop_trial` method to terminate a trial's execution before it has completed.\n",
168+
"Runners may also optionally implement a `stop_trial` method to terminate a trial's execution before it has completed.\n",
169169
"This is necessary for using [early stopping](../early_stopping) in closed-loop experimentation, but we will skip this for now."
170170
]
171171
},

0 commit comments

Comments
 (0)