-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Cannot reproduce active_learning
experiment
#2
Comments
Ugh, yes, that looks like some sort of improper dimension based error. I'll try to take a closer look this weekend. Does it work if you enforce the dimension? |
Thanks for responding! Could you clarify what you mean by "enforcing the dimension" (what & where)? |
(Just to clarify, I used GPyTorch==1.4.0 and botorch==0.4.0, as the code doesn't run with recent versions due to a bunch of breaking changes in those libraries.) |
Ugh, yes, not surprising that it no longer works, especially as the core contribution (fantasization) here is merged into gpytorch for gaussian likelihoods, but not botorch (one day i'll publish that PR).
off the top of my head, i mean this: "svgp model getting init_y.view(-1) whereas the other models get init_y.view(-1, 1)" |
Well, changing the svgp constructor arguments from |
I pushed a fix and it ran locally for me. Sorry for the long delay there. |
When running
as given in the README.md, I get the following exception:
Calling the experiment script with
--random
, or running--model=exact
(with or without--random
) runs fine.Might this have something to do with the
svgp
model gettinginit_y.view(-1)
whereas the other models getinit_y.view(-1, 1)
(similarly forinit_y_var
)?The text was updated successfully, but these errors were encountered: