Decrease the confidence interval in the Fixed Noise GP model #1418
-
I have used FixedNoiseGP on 4 datapoints as shown in the figure. Based on my experience with the blac-box, I know that the trend is roughly linear and variance from x=40 to x=100 will be similar to the variance at x=40 or x=100. So I want to decrease the confidence interval at all these points to be smaller. For example, I want the 95% confidence interval at x=80 to be between y=9 and y=11. I don't know how to include this to my model. Can you point me to the argument which I should change for this? I want to do this because I dont want the Expected Improvement acquisition function to later on search for an optimum (minimum) value in the region approximately above x=80. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hi @sambitmishra98. I don't think there's a way to include the domain info into the model out of the box. You would need to define either a custom model or a custom mean and covariance modules to do this. If you wanted a really hacky solution, you could add a dummy observation between 40 and 80 to tell the model that those areas are not good, or that there's a roughly linear pattern there, by having a roughly linear dummy observations in that region.
Alternatively, you can achieve this by excluding the regions you know to be inferior from the search space bounds while optimizing the acquisition function. |
Beta Was this translation helpful? Give feedback.
Hi @sambitmishra98. I don't think there's a way to include the domain info into the model out of the box. You would need to define either a custom model or a custom mean and covariance modules to do this.
If you wanted a really hacky solution, you could add a dummy observation between 40 and 80 to tell the model that those areas are not good, or that there's a roughly linear pattern there, by having a roughly linear dummy observations in that region.
Alternatively, you can achieve this by excluding the regions you know to be inferior from th…