GPflow / GPflowOpt

Bayesian Optimization using GPflow

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Possible MES bug ?

ssydasheng opened this issue · comments

gamma = (fmean - tf.expand_dims(self.samples, axis=0)) / tf.sqrt(fvar)

In the original paper, gamma is computed as (y* - mu) / sigma. It seems the code here is reversed.

Hello!

The reason for this is that the paper is written in the sense that they want to maximize an objective, whiles our framework minimizes a cost function.

ah, I see. Thanks