botorch icon indicating copy to clipboard operation
botorch copied to clipboard

Bayesian optimization in PyTorch

Results 144 botorch issues
Sort by recently updated
recently updated
newest added

# 🚀 Feature Request Add an argument in [joint_optimize](https://github.com/pytorch/botorch/blob/master/botorch/optim/optimize.py#L161) to specify gen_candidates method - so you can easily use e.g. `fit_gpytorch_torch` instead of `fit_gpytorch_scipy`. ## Motivation It often makes sense...

enhancement

# 🚀 Feature Request We'd like to support a simplex constraint on a subset of parameters (all parameters positive, sum to 1). ## Motivation See e.g. discussion in #480

enhancement

# 🐛 Bug Hi, I wanted to train `SingleTaskGP` on multiple GPUs as I have got 8 cards on my node. So I searched and found out about the Gpytorch's...

bug
upstream issue

Using `fit_gpytorch_model` on a model obtained using `condition_on_observations` produces bogus fits. This was described in https://github.com/pytorch/botorch/issues/337#issuecomment-563358045. Basic model: ``` import torch from torch import Tensor from botorch.models import SingleTaskGP from...

bug
wontfix

## Motivation This PR fixes a major issue when using the ```ProximalAcquisitionFunction``` with base acquisition functions that are not strictly positive. This PR fixes it by applying a Softplus transformation...

CLA Signed

# 🐛 Bug After running `model.condition_on_observations(new_x, new_y)`, where the original model was instantiated with `Normalize(d)`, that model fails during retraining. I believe this is a bug but I'm honestly not...

bug

Summary: This commit improves the test coverage of the code located in botorch/utils/probability. For the current coverage without this commit, [see here](https://app.codecov.io/gh/pytorch/botorch/pull/1394). Differential Revision: D39556258

CLA Signed
fb-exported

Summary: **Changelog:** - Enable user-defined loss closures. - `fit_gptorch_torch` rewrite - Add `fit_gyptorch_mll` dispatch for ApproximateGPs Differential Revision: D39101211

CLA Signed
fb-exported

# 🐛 Bug ## To reproduce ** Code snippet to reproduce ** ```python fit_gpytorch_model(mll_ei) ``` ** Stack trace/error message ** ``` gpytorch.utils.errors.NotPSDError: Matrix not positive definite after repeatedly adding jitter...

bug

# 🚀 Feature Request Now that `fit_gpytorch_mll` exists using multiple dispatch, it seems like it'd be fairly straightforward to support minibatch training by registering a `fit_gpytorch_torch_stochastic` or similar as the...

enhancement