Skip to content
Closed
Show file tree
Hide file tree
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
60 changes: 21 additions & 39 deletions tutorials/GIBBON_for_efficient_batch_entropy_search.ipynb

Large diffs are not rendered by default.

24 changes: 8 additions & 16 deletions tutorials/bo_with_warped_gp.ipynb

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions tutorials/closed_loop_botorch_only.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@
" q=BATCH_SIZE,\n",
" num_restarts=NUM_RESTARTS,\n",
" raw_samples=RAW_SAMPLES, # used for intialization heuristic\n",
" options={\"batch_limit\": 5, \"maxiter\": 200},\n",
" options={\"batch_limit\": 5, \"maxiter\": 200, \"sample_around_best\": True},\n",
" )\n",
" # observe new values \n",
" new_x = candidates.detach()\n",
Expand Down Expand Up @@ -439,4 +439,4 @@
},
"nbformat": 4,
"nbformat_minor": 2
}
}
7 changes: 4 additions & 3 deletions tutorials/compare_mc_analytic_acquisition.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
" q=1,\n",
" num_restarts=20,\n",
" raw_samples=100,\n",
" options={},\n",
" options={\"sample_around_best\": True},\n",
")"
]
},
Expand Down Expand Up @@ -144,7 +144,7 @@
" q=1,\n",
" num_restarts=20,\n",
" raw_samples=100,\n",
" options={},\n",
" options={\"sample_around_best\": True},\n",
")"
]
},
Expand Down Expand Up @@ -227,6 +227,7 @@
" q=1,\n",
" num_restarts=20,\n",
" raw_samples=100,\n",
" options={\"sample_around_best\": True},\n",
")\n",
"batch_candidates, batch_acq_values = gen_candidates_torch(\n",
" initial_conditions=batch_initial_conditions,\n",
Expand Down Expand Up @@ -371,4 +372,4 @@
},
"nbformat": 4,
"nbformat_minor": 2
}
}
3 changes: 2 additions & 1 deletion tutorials/composite_bo_with_hogp.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -480,6 +480,7 @@
" \"q\": batch_size,\n",
" \"num_restarts\": 10,\n",
" \"raw_samples\": 512,\n",
" \"sample_around_best\": True,\n",
" }\n",
" sampler = IIDNormalSampler(num_samples=128)\n",
"\n",
Expand Down Expand Up @@ -645,4 +646,4 @@
},
"nbformat": 4,
"nbformat_minor": 2
}
}
11 changes: 8 additions & 3 deletions tutorials/composite_mtbo.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,13 @@
" bounds=bounds,\n",
" q=batch_size,\n",
" num_restarts=10,\n",
" raw_samples=512, # used for intialization heuristic\n",
" options={\"batch_limit\": 5, \"maxiter\": 200, \"init_batch_limit\": 5},\n",
" raw_samples=512, # used for initialization heuristic\n",
" options={\n",
" \"batch_limit\": 5,\n",
" \"maxiter\": 200,\n",
" \"init_batch_limit\": 5,\n",
" \"sample_around_best\": True,\n",
" },\n",
" )\n",
" # observe new values \n",
" new_x = candidates.detach()\n",
Expand Down Expand Up @@ -707,4 +712,4 @@
},
"nbformat": 4,
"nbformat_minor": 2
}
}
1,196 changes: 598 additions & 598 deletions tutorials/constrained_multi_objective_bo.ipynb

Large diffs are not rendered by default.

1,466 changes: 734 additions & 732 deletions tutorials/constraint_active_search.ipynb

Large diffs are not rendered by default.

Loading