Sterling G. Baird

Results 553 comments of Sterling G. Baird

Looks like some of these were removed: https://github.com/facebook/Ax/releases/tag/0.5.0 You can `%pip install ax-platform==0.4.*` for now. Then we'll work on refactoring honegumi for 0.5. If you have a suggested fix for...

@AniketChitre, the following should get you up and running in the meantime: https://colab.research.google.com/gist/sgbaird/e64d0c97056b3b0031cf96744d5e0634/saasbo.ipynb ```python %pip install ax-platform==0.4.3 import numpy as np from ax.service.ax_client import AxClient, ObjectiveProperties from ax.modelbridge.factory import Models...

@AniketChitre are you still blocked on this?

After some digging: [`fit_fully_bayesian_model_nuts`](https://botorch.readthedocs.io/en/latest/fit.html#botorch.fit.fit_fully_bayesian_model_nuts) is called in conjunction with [`FullyBayesianSingleTaskGP`](https://botorch.readthedocs.io/en/latest/models.html#botorch.models.fully_bayesian.FullyBayesianSingleTaskGP) ([GitHub](https://github.com/pytorch/botorch/blob/78c04e2b7030a8e5cee7dbb7f52d33e47a9fee71/botorch/models/fully_bayesian.py#L741-L807)). The two kwargs of interest seem to be associated with the fit function, but I don't think [Botorch Modular](https://ax.dev/docs/tutorials/modular_botax/)...

Thank you! I can give this a try

@AndrewFalkowski any thoughts on how to best proceed?

@saitcakmak For the following: ```python gs = GenerationStrategy( steps=[ GenerationStep( model=Models.SOBOL, num_trials=4, # https://github.com/facebook/Ax/issues/922 min_trials_observed=3, max_parallelism=5, model_kwargs={"seed": 999}, model_gen_kwargs={}, ), GenerationStep( model=Models.FULLYBAYESIAN, num_trials=-1, max_parallelism=3, model_kwargs={}, ), ] ) ``` Would...

Except still occurs locally when using file inclusion syntax of `"./src/honegumi/..." = ...` and occurs on readthedocs when using `"/honegumi/..." = ...`. maybe `"./honegumi/..." = ...` would help. Otherwise maybe...

I've been going down a rabbit hole trying to get the file added after having used "Deploy to Heroku". It's kind of a mess. Ideally, it would be great to...

Just an xref to https://github.com/peterhinch/micropython-mqtt/issues/171#issuecomment-3237257607, since we're now running into same issues as mentioned there with `ECONNABORTED`: ```python Traceback (most recent call last): File "", line 227, in File "asyncio/core.py",...