You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There seems to be a typo in the implementation of the regular BO loops. Similar to the Issue #2, X values where an acquisition function is evaluated might need to be changed. In the following line:
self.BO is calculated for X_new, but I think it should be evaluated on all available X values, i.e., self.dataset_X.
Attached is the notebook where I compared the performance of the two implementations. It seems that when X_new is replaced with self.dataset_X the performance slightly improves. zombi_test_2.zip
The text was updated successfully, but these errors were encountered:
There seems to be a typo in the implementation of the regular BO loops. Similar to the Issue #2,
X
values where an acquisition function is evaluated might need to be changed. In the following line:ZoMBI/zombi.py
Line 149 in 04a7f0f
self.BO
is calculated forX_new
, but I think it should be evaluated on all available X values, i.e.,self.dataset_X
.Attached is the notebook where I compared the performance of the two implementations. It seems that when
X_new
is replaced withself.dataset_X
the performance slightly improves.zombi_test_2.zip
The text was updated successfully, but these errors were encountered: