Update to make GPflux compatible with newer versions of GPflow, that require an additional X parameter in the likelihoods.
In this PR I just pass a dummy None value as X. Alternatively we could:
I don't know Keras and GPflux well, but maybe we can find a "real" value of X to use?
Do we want to attempt to write code that's compatible with earlier version of GPflow as well? I suppose we could add an if somewhere?
Update to make GPflux compatible with newer versions of GPflow, that require an additional
X
parameter in the likelihoods. In this PR I just pass a dummyNone
value asX
. Alternatively we could:X
to use?if
somewhere?