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
right now, batch prediction will remove data points from all_xz_unsearched to simulate not having that data point before retraining n times for a batch size of n. So if predicting on 100 points, will predict point 1, recompute acquisition function for point 2, etc. the problem is recomputing the acquisition function is expensive for each one, especially if each is using a bootstrap (e.g., RF). However, there's no need for the model to actually be retrained for every batch; So maybe the model can be trained once per batch and the code can be rewritten to compute the acquisition function alone for each new point in the batch
The text was updated successfully, but these errors were encountered:
right now, batch prediction will remove data points from all_xz_unsearched to simulate not having that data point before retraining n times for a batch size of n. So if predicting on 100 points, will predict point 1, recompute acquisition function for point 2, etc. the problem is recomputing the acquisition function is expensive for each one, especially if each is using a bootstrap (e.g., RF). However, there's no need for the model to actually be retrained for every batch; So maybe the model can be trained once per batch and the code can be rewritten to compute the acquisition function alone for each new point in the batch
The text was updated successfully, but these errors were encountered: