Skip to content

Commit 6421dd0

Browse files
Execute notebooks end-to-end and fix typo in models.py
- Execute both notebooks (prediction_and_optimization_tutorial, strength_curve_prediction_demo) end-to-end in concrete mode so all cell outputs are populated, including Pareto frontier plots and qLogNEHVI acquisition function optimization results. - Fix typo in models.py: 'homogenuous' -> 'homogeneous'.
1 parent ad73603 commit 6421dd0

3 files changed

Lines changed: 950 additions & 202 deletions

File tree

boxcrete/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ def fit_gwp_gp(
314314
# GWP is a linear function of the inputs
315315
covar_module = LinearKernel()
316316
# removing any input and outcome transforms, as well as the prior mean from
317-
# the model to force it to be homogenuous, i.e. it has no offset.
317+
# the model to force it to be homogeneous, i.e. it has no offset.
318318
model_kwargs = {
319319
"train_X": X,
320320
"train_Y": Y,

notebooks/prediction_and_optimization_tutorial.ipynb

Lines changed: 863 additions & 65 deletions
Large diffs are not rendered by default.

notebooks/strength_curve_prediction_demo.ipynb

Lines changed: 86 additions & 136 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)