Skip to content

Commit 7650c55

Browse files
authored
Merge pull request #899 from alan-turing-institute/update_doc_text
Update tutorial text
2 parents edeea16 + 41ef227 commit 7650c55

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/tutorials/emulation/01_quickstart.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -137,18 +137,18 @@
137137
"\n",
138138
"<summary>Model selection</summary>\n",
139139
"\n",
140-
"By default, `AutoEmulate` will use of all the listed emulator models, but you can also specify a subset to use if you already know which kinds of models are suitable for your data.\n",
140+
"By default, `AutoEmulate` will fit all the above listed emulator models, but you can also specify a subset or additional models to use if you already know which kinds of models are most suitable for your data.\n",
141141
"\n",
142142
"Specify models used by AutoEmulate with the `models` argument, for example:\n",
143143
"```python\n",
144-
"models = [\"GaussianProcessExact\", \"RadialBasisFunctions\"]\n",
144+
"models = [\"GaussianProcessRBF\", \"GaussianProcessCorrelatedRBF\", \"RadialBasisFunctions\"]\n",
145145
"ae = AutoEmulate(x, y, models=models)\n",
146146
"```\n",
147147
"\n",
148-
"The user can also restrict the selection to just PyTorch models or probabilistis models by using the `only_pytorch` or `only_probabilistic` arguments, respectively. For example, to use only PyTorch models:\n",
148+
"The user can also directly restrict the selection to just probabilistic models by using the `only_probabilistic` argument without having to list all the models individually:\n",
149149
"\n",
150150
"```python\n",
151-
"ae = AutoEmulate(x, y, only_pytorch=True)\n",
151+
"ae = AutoEmulate(x, y, only_probabilistic=True)\n",
152152
"```\n",
153153
"\n",
154154
"</details>\n",

0 commit comments

Comments
 (0)