https://github.com/GPflow/GPflow

sort by:
Revision Author Date Message Commit Date
e95281f Removing training loop from utilities 22 October 2019, 13:09:47 UTC
86eebcc Merge branch 'develop-2.0' of github.com:GPflow/GPflow into develop-2.0 21 October 2019, 14:44:03 UTC
e56b1a5 Some changes in convolutional notebook 21 October 2019, 14:33:13 UTC
b0ddc6d Notebook for Variational Fourier Features (#1062) Adds a notebook that demonstrates how to add inter-domain inducing variables to GPflow without having to touch the core code base, at the example of variational Fourier features (Hensman, Durrande, Solin, JMLR 18 (2018)). 21 October 2019, 14:19:32 UTC
33ded03 Ensure all tf_probability distributions take the correct dtype parameters (#1103) 18 October 2019, 15:06:01 UTC
deb4508 Fix hidden bug in SGPR (#1106) 1. Fix hidden bug in SGPR 2. Add the sgpr.compute_qu method from gpflow1 1. [Bug]. SGPR likelihoods were previously using full rank matrices instead of diagonal ones in both upper bound and likelihood calculation. Ie `Kdiag` was not "diag". This error was being masked by the intentional deactivation of tests comparing to the SGPR to the GPR, and what appears to be a hack to make tests working on the upper bound case. 2. [Migration]. Fixing the above broke another test, originally used for sgpr.compute_qu. The method sgpr.compute_qu had not been migrated from gpflow1, and a test that was meant to check it had been patched up to pass, erroneously. After speaking to @markvdw, concluded this method is useful, in particular to compare to SVGP model. The test has been patched up and the method ported to gpflow2. 17 October 2019, 14:46:42 UTC
3b2a2ee Change gpflow.base.Module attributes `parameter` and `trainable parameter` to be wrapped in a tuple, not generators (#1102) This matches tf2 behaviour [here](https://github.com/tensorflow/tensorflow/blob/1cf0898dd4331baf93fe77205550f2c2e6c90ee5/tensorflow/python/module/module.py#L143) and prevents accidentally trying to reuse the same the generator once exhausted. 16 October 2019, 09:39:04 UTC
c62ad93 GPflow 2.0 notebook update: Multiclass classification (#1092) 15 October 2019, 10:08:20 UTC
b474291 GPflow2.0 notebook update: kernel design (#1087) 15 October 2019, 10:07:27 UTC
4aef40d fix bug in log_prior when a Parameter has a transform but no prior (#1099) Fixes a bug in the optimization objective for all `BayesianModel` subclasses when the model has parameters that have a `transform` (e.g. `positive()`, for kernel lengthscales and variances) but no `prior` (i.e. when doing Maximum Likelihood Estimation (MLE) inference). The objective should be independent of the parametrisation of the parameters, i.e. `log_prior()` of the parameters should be zero. 14 October 2019, 21:36:48 UTC
c5b91dd Merge pull request #1098 from GPflow/st/minor_cleanup Minor cleanup 11 October 2019, 14:56:18 UTC
f4688ba Apply suggestions from code review Fix types Co-Authored-By: Eric Hammy <6815729+condnsdmatters@users.noreply.github.com> 11 October 2019, 13:44:17 UTC
0ee881e Merge pull request #1097 from GPflow/st/quickfix_regression_notebook_test Quickfix: enable notebook test of regression.ipynb 11 October 2019, 11:12:17 UTC
a57569c Merge branch 'develop-2.0' of github.com:GPflow/GPflow into st/minor_cleanup 11 October 2019, 10:59:22 UTC
5cef76e regression.ipynb is ready for testing but had not been removed from blacklist 11 October 2019, 10:44:47 UTC
0b368ce Fix behaviour of likelihood quadrature tests (#1083) 11 October 2019, 10:37:44 UTC
7e6028c GPflow2.0 notebook update: varying_noise.ipynb (#1050) 11 October 2019, 09:21:27 UTC
ba28c56 GPflow2.0 notebook update: regression.ipynb (#1076) * regression notebook update to gpflow2 * now it has the correct text * restart&run all, and some minor text changes * minor updates * Update regression.ipynb 11 October 2019, 09:02:35 UTC
8e2e5cf Remove tf_graphs_and_sessions notebook (#1096) 10 October 2019, 18:40:38 UTC
99e8988 Sync notebooks with develop (includes moving files from notebooks2 back to doc/source/notebooks) (#1073) 09 October 2019, 20:19:05 UTC
3a21b65 adjust import for py3.8 09 October 2019, 13:42:44 UTC
d8bbeb7 make docstrings r"" 09 October 2019, 13:42:34 UTC
a8f9348 minor changes 09 October 2019, 13:32:11 UTC
760bf04 add noise_variance argument to GPR and SGPR 09 October 2019, 13:30:58 UTC
4dba79d Clean up dependencies and setup instructions (#1074) 08 October 2019, 10:24:15 UTC
5a5c34e Merge pull request #1085 from GPflow/sergio_pasc/gpflow-2.0/updated-print-summary-tests Test on print_summary now checks string output straight 07 October 2019, 14:59:11 UTC
5654336 merging 07 October 2019, 14:50:13 UTC
ecd0b82 Updated method names and signatures 07 October 2019, 14:47:23 UTC
ab73c4b Update gpflow/utilities/utilities.py Co-Authored-By: st-- <st--@users.noreply.github.com> 07 October 2019, 14:31:46 UTC
74cf61b Test on print_summary now checks string output straight 07 October 2019, 14:10:45 UTC
cba9732 Remove default argument of the set_trainable (was False) (#1060) 07 October 2019, 14:09:57 UTC
e3c3f96 Fix bug in print_summary for composition kernels (#1071) Closes #1066 07 October 2019, 13:17:17 UTC
2974b94 Improve gpflow2 code coverage by adding tests (#1079) * add tests of gpflow.config * make config tests pass * use raise NotImplementedError in abstractmethod so codecov does not count it * swap order of tests so that it ends up in the original state * pca_reduce: turn assert into ValueError * add tests for gplvm constructor checks * add pragma no cover to scipy optimizer type check * more NotImplementedErrors * update codecov.yml * add missing logdensities tests * Change code coverage threshold to 95% so that the build status reports actually mean something again * improve test_dtype_errorcheck * pragma: no cover for ValueError check * . 07 October 2019, 12:47:36 UTC
48933ab minor cleanup of RobustMax (#1075) 04 October 2019, 15:12:44 UTC
81ae0be Remove Natural Gradient to increase code coverage 02 October 2019, 20:22:57 UTC
36c4736 Fix test coregion (#1067) 02 October 2019, 09:50:28 UTC
57f176c Merge branch 'awav/gpflow-2.0' of github.com:GPflow/GPflow into awav/gpflow-2.0 02 October 2019, 09:31:38 UTC
8dfba0c Remove hmc.py optimizer 02 October 2019, 09:31:32 UTC
6e57626 GPflow 2.0 notebook update: GPs for big data (#1048) 01 October 2019, 19:13:50 UTC
705380d Rename inducing_variables -> inducing_variable as model attribute (#1063) 01 October 2019, 15:39:35 UTC
a39317b GPflow 2.0 notebook update: classification (#1044) 01 October 2019, 15:36:05 UTC
f9c3052 Improved convolutional GP notebook. (#1061) 25 September 2019, 16:31:29 UTC
13dd839 Added convolutional code (#1034) 25 September 2019, 12:17:01 UTC
1aff010 Mark/gpflow 2.0/kl dispatch (#1035) * Multiple dispatch for KL divergences. * prevent overwriting dispatcher * fix SVGP 24 September 2019, 09:53:14 UTC
f359d17 Added more elaborate documentation to multioutput notebook. (#1054) 24 September 2019, 08:13:41 UTC
102bf48 Remove tf.function(autograph=True) in gplvm notebook 22 September 2019, 15:43:11 UTC
292e446 Wrap gplvm training in tf.function 22 September 2019, 15:16:00 UTC
db6d2fb Add ci_utils.py module to the notebooks 22 September 2019, 14:57:52 UTC
8c54b52 Import tensorflow in gplvm.ipynb 22 September 2019, 14:00:32 UTC
f35fd17 Update README.md 22 September 2019, 13:58:11 UTC
f63857b Temporary change in README.md file 21 September 2019, 21:08:09 UTC
41dce7d GPflow 2.0 notebook update: GPLVM 16 September 2019, 15:43:28 UTC
e1cb9e7 GPflow 2.0 notebook update: Ordinal Regression (#1049) 16 September 2019, 10:40:55 UTC
aaee8b1 GPflow2.0 notebook update: multioutput (#1047) 16 September 2019, 10:33:47 UTC
da5c727 GPflow 2.0 notebook update: kernels (#1046) 16 September 2019, 10:31:57 UTC
9a278ac Update notebook test 16 September 2019, 10:18:39 UTC
6e624ce Notebook tests 16 September 2019, 10:14:33 UTC
333ee64 Notebook test fix 15 September 2019, 21:25:22 UTC
abf245b Add notebooks to tests 15 September 2019, 21:18:57 UTC
8ae58f2 GPLVM tests 13 September 2019, 15:59:46 UTC
708e383 Merge changes from develop 13 September 2019, 12:58:16 UTC
6dc68be Copy notebooks 13 September 2019, 12:40:04 UTC
a21a668 Merge branch 'sergio_pasc/gpflow-2.0/move-coregion-tests' into awav/gpflow-2.0 13 September 2019, 10:17:36 UTC
09464b5 Update GPflow 2.0 notebook 13 September 2019, 08:51:04 UTC
3b7423f Method equivalence and VGP, SGPR and SGPFITC fixed 12 September 2019, 12:30:56 UTC
45efebc Method equivalence and VGP, SGPR and SGPFITC fixed 12 September 2019, 12:19:43 UTC
f174d7b Tests for equivalence methods still in unsorted but updated to TF2 11 September 2019, 13:02:02 UTC
a49c1a3 GPLVM models to GPflow2.0 11 September 2019, 12:58:47 UTC
828694a Tests for equivalence methods still in unsorted but updated to TF2 11 September 2019, 11:07:34 UTC
5e0c087 Merge branch 'awav/gpflow-2.0' into sergio_pasc/gpflow-2.0/move-coregion-tests 10 September 2019, 16:14:37 UTC
4ae9e39 GPMC, SGPMC and method.py test pass 10 September 2019, 16:12:04 UTC
b60b397 Merge branch 'sergio_pasc/gpflow-2.0/move-kldiv-tests' into awav/gpflow-2.0 10 September 2019, 16:00:29 UTC
2dd2937 Merge branch 'sergio_pasc/gpflow-2.0/move-kldiv-tests' of github.com:GPflow/GPflow into sergio_pasc/gpflow-2.0/move-kldiv-tests 10 September 2019, 15:54:56 UTC
54357b0 Formatting 10 September 2019, 15:54:34 UTC
94e5329 VGP coregion updated although test fail 10 September 2019, 15:46:04 UTC
01f5976 Merge branch 'awav/gpflow-2.0' into sergio_pasc/gpflow-2.0/move-coregion-tests 10 September 2019, 15:35:28 UTC
6e1f56a Update VGP model 10 September 2019, 15:23:06 UTC
3b5c8c7 Preparing Coregion tests for TF2.0 GPflow2.0 !!! Still don't pass (hence in _unsorted_tests folder), waiting for VGP to me merged 10 September 2019, 13:57:09 UTC
c5a1bc9 Merge branch 'awav/gpflow-2.0' into sergio_pasc/gpflow-2.0/move-kldiv-tests # Conflicts: # _unsorted/_test_kldiv.py 10 September 2019, 13:27:38 UTC
bb09839 SGPR and SGPFITC now have `data` as part of the state (#1043) 10 September 2019, 09:26:31 UTC
8394f5e Message in test_likelihood 09 September 2019, 23:31:12 UTC
cb7d952 Likelihood test pass at CircleCI 09 September 2019, 22:52:19 UTC
f666063 Debugging likelihood test 09 September 2019, 22:42:10 UTC
4e8906f Debugging likelihood tests 09 September 2019, 21:37:32 UTC
2d74480 Randomize order of tests 09 September 2019, 21:31:50 UTC
4864832 Pip update 09 September 2019, 17:11:17 UTC
212658e Trigger circleci build 09 September 2019, 15:37:16 UTC
507fb21 Update pip in circleci 09 September 2019, 15:26:49 UTC
3ddfc59 Comment out deploy circleci part 09 September 2019, 15:14:00 UTC
9978537 Remove notebooks and examples from testing 09 September 2019, 15:11:11 UTC
8a9f162 Change circleci options 09 September 2019, 14:37:56 UTC
a28284b Changes for dynamic shapes in variables 09 September 2019, 10:51:20 UTC
911a10b The `print_summary` now deals with list and dict in tf.Module (#1037) 04 September 2019, 10:59:56 UTC
6a02bf5 Rename RBF to SquaredExponential. (#1033) 22 August 2019, 17:00:26 UTC
5b88ff3 Inheritance structure for multioutput code + updated multioutput notebook (#1029) 22 August 2019, 12:14:09 UTC
a8504aa Clean notebook 02 July 2019, 17:59:59 UTC
7e4d879 Clean notebook 02 July 2019, 17:59:00 UTC
acb9adf Merge GPflow2.0 introduction notebook 02 July 2019, 17:45:55 UTC
474d541 Put unsorted tests under underscored folder 02 July 2019, 17:39:50 UTC
eda1cc7 Remove garbage file 02 July 2019, 17:37:40 UTC
back to top