Vincent Dutordoir

Results 5 issues of Vincent Dutordoir

Hi @awav, I stumbled upon this [TODO](https://github.com/GPflow/GPflow/blob/dda4adf361dbf54c3ca74808daec93d1de064463/gpflow/utilities/ops.py#L29) that is referencing your name. As we now have TF 2.3, do you reckon we can remove our custom cast method? Thanks https://github.com/GPflow/GPflow/blob/dda4adf361dbf54c3ca74808daec93d1de064463/gpflow/utilities/ops.py#L29

# Feature request: Support TFP's (L-)BFGS optimiser TensorFlow Probability (TFP) has a native TensorFlow implementation of the (L-)BFGS optimiser. Currently, GPflow doesn't use this and relies on scipy's implementation. The...

enhancement
good first issue

Hi, I've re-implemented GPflow's [`gauss_kl`](https://github.com/GPflow/GPflow/blob/master/gpflow/kullback_leiblers.py) method using the `tensorflow_probability.distributions.kl_divergence` method. It looks as follows: ```python import tensorflow as tf import tensorflow_probability as tfp def gauss_kl_tfp_distributions(q_mu, q_sqrt, K=None): """ Kullback-Leibler divergence...

discussion

Hi all, ## Description We've been setting up a new manual using jupyter-notebooks for a github project ([GPflow](https://github.com/GPflow/GPflow)) and the idea is to display them on the [nbviewer](https://nbviewer.jupyter.org) website. The...

type:Bug

** DO NOT MERGE ** Hi all, I spent a little bit of time updating the `GPR_additive` VFF model to GPflow 2 (`2.0.4`) and Tensorflow 2 (`2.2.0`) for the Airline...