https://github.com/GPflow/GPflow

sort by:
Revision Author Date Message Commit Date
8ed17d0 silly bug fix 29 June 2016, 09:40:33 UTC
7905bb6 Changing data now only recompiles if necessary An option in the dataholder class lets it choose what to do when the shape of data are changed. So now we can do X = np.random.randn(10, 1) Y = np.sin(X) m = GPflow.models.GPR(X, Y, GPflow.kernels.RBF(1)) m.optimize() X_new = np.random.randn(12, 1) Y_new = np.sin(X_new) m.X = X_new m.Y = Y_new m.optimize() # no recompile neded. 29 June 2016, 08:36:52 UTC
aeb4de9 docstring improvements 27 June 2016, 13:34:41 UTC
a7c6473 changed the order of the classe and improved docstrings 27 June 2016, 13:23:08 UTC
f677790 Test added for different size. 27 June 2016, 10:20:38 UTC
a4d2d04 Some documentations prepared. 27 June 2016, 10:02:28 UTC
56437b1 FIX: correct call to rng.randint 26 June 2016, 15:54:19 UTC
511fe85 Merge pull request #110 from GPflow/DataObject Data object 26 June 2016, 11:23:55 UTC
9cd3695 removing unised update_data functions 25 June 2016, 13:23:18 UTC
08f15e6 two minor edits to tests to work with new feed_dict structure 25 June 2016, 13:13:54 UTC
a61e3f0 improved picklability of DataHolder 25 June 2016, 12:41:06 UTC
6e34865 enabled minibatching in the svgp 25 June 2016, 12:38:15 UTC
491b288 adding compile functions for shape-changes For VGP and GPMC, when the data shape changes, the parameter shap must too. This is don at compile time. 25 June 2016, 10:15:51 UTC
0a30393 modified the creation of placeholders so that they are shared by AutoFlow graphs 25 June 2016, 08:16:48 UTC
ed506ce shape inference changes in GPR 24 June 2016, 19:11:33 UTC
d6d8431 adding set_data function for DataHoleder 24 June 2016, 19:11:12 UTC
406c1a3 initial work on DataHo9lder Class 24 June 2016, 16:04:24 UTC
9374793 edits to AutoFlow 24 June 2016, 13:14:51 UTC
dd67cbf modifications to AutoFlow to work with fixed dictionary 24 June 2016, 13:00:40 UTC
bf443c0 amalgamated fixed_state placeholder functions We now only have one function, get_feed_dict, that fetches bth fixed parameter representations and data (still via the data_dict). 24 June 2016, 12:57:15 UTC
0864031 Merge pull request #107 from fujiisoup/Placeholder Placeholder 24 June 2016, 10:03:54 UTC
2032bae VGP tested. 24 June 2016, 09:03:59 UTC
0aba584 .. 24 June 2016, 08:50:24 UTC
7207ed9 Tested GPR. VGP does not work yet. 24 June 2016, 08:50:12 UTC
4ba526a Data and fixed parameters are treated as placeholder. update_data method was added only for gpr, vgp. 24 June 2016, 08:10:18 UTC
418b9c2 Worked fine for the first time. The fixed parameters should be also treated in placeholder. 24 June 2016, 05:16:13 UTC
74824db Merge pull request #104 from GPflow/name_coverage Some very simple tests to make sure objects' names are correct 20 June 2016, 13:23:03 UTC
a119496 some very simple tests to make sure objects' names are correct 17 June 2016, 19:57:39 UTC
f4303a3 Merge pull request #96 from GPflow/to_json serializing GPflow objects 17 June 2016, 11:19:36 UTC
2802a03 removing some to_dict functionality that should live on a different branch 17 June 2016, 09:49:31 UTC
027d6ca Attempt to fix slow tests. 15 June 2016, 16:43:52 UTC
003baba Moving dict contributions to another branch. 15 June 2016, 15:37:08 UTC
5b50dfa Separated dict test, added prediction test after unpickling to test AutoFlow. 15 June 2016, 15:28:31 UTC
82411ab Merge branch 'master' into to_json 14 June 2016, 16:26:54 UTC
867cef5 Merge pull request #100 from GPflow/af_session_init initializing all tf variables inside AF session 14 June 2016, 16:26:20 UTC
5764084 adding test to replicate bug #99 14 June 2016, 16:13:50 UTC
dad657e initializing all tf variables inside AF session 14 June 2016, 16:10:54 UTC
d899c94 Merge branch 'master' into to_json 14 June 2016, 09:21:58 UTC
4ea1fa8 Merge pull request #98 from GPflow/fixing_parameterized adding fixed property to parameterized 14 June 2016, 09:19:15 UTC
1df3652 Merge branch 'master' into to_json 14 June 2016, 09:09:27 UTC
1f37bea Merge branch 'master' into fixing_parameterized 14 June 2016, 09:07:07 UTC
b85fa14 Merge pull request #97 from GPflow/universal_autoflow Universal autoflow 14 June 2016, 09:06:08 UTC
1258761 adding fixed propert to parameterized 14 June 2016, 08:28:12 UTC
7f36185 improvements to reconstruction of _parent tree after pickle 13 June 2016, 19:12:49 UTC
d647704 adding a test to make sure to_dict works after pickle/unpickle 13 June 2016, 19:09:48 UTC
1940316 adding pickle tests 13 June 2016, 18:25:46 UTC
0dd7317 minor edits to (g|s)etstate in model class 13 June 2016, 18:25:31 UTC
373ff40 adding special (s|g)etstate for svgp (for _tfX, _tfY) 13 June 2016, 18:24:36 UTC
a332e8e simplifying some changes to model.py surrounding minusF, minusG 13 June 2016, 16:13:22 UTC
74061cf getstate and setstate methods for use with pickle 13 June 2016, 15:32:54 UTC
7d42d9f adding methods to convert a model to a dict 13 June 2016, 10:16:25 UTC
2612932 adding compute_K fn to kernels 09 June 2016, 20:13:00 UTC
55f1499 moved AutoFlow to Parameterized class 09 June 2016, 20:10:43 UTC
bbded95 more work on autoflow 1) The autoflow objects now have their own sessions 2) The autoflow storage is now deleted on _needs_recompile 09 June 2016, 19:21:43 UTC
7528c6e changed autoflow to use its own free_state object 09 June 2016, 19:11:29 UTC
4005f48 Merge pull request #87 from GPflow/value_property adding value property to Param class 09 June 2016, 18:09:33 UTC
085e6f5 manually merging conflicted test_param.py 09 June 2016, 16:01:59 UTC
0e8d653 Small test fixes. `fail...` to `assert...`. 09 June 2016, 15:26:16 UTC
0ba22cd Merge pull request #88 from GPflow/spelling running a spell-checker on the comments and docstrings 09 June 2016, 14:53:59 UTC
527bed8 Merge branch 'master' into spelling 09 June 2016, 12:15:55 UTC
90aac9f Merge pull request #90 from GPflow/release_0.1.4 All ready for Release 0.1.4 09 June 2016, 10:53:09 UTC
b534c3b making a copy of the _array when acessing the value property 09 June 2016, 10:41:33 UTC
8ef07c1 All ready for Release 0.1.4 modified: GPflow/_version.py modified: RELEASE.md 08 June 2016, 19:56:46 UTC
075e709 improving tests 08 June 2016, 18:58:43 UTC
4838a34 merging 08 June 2016, 17:10:59 UTC
41df3e8 adding set of the _needs recompile flag when parameters are replaced, and appropriate tests 08 June 2016, 17:09:42 UTC
85143fa using model.value in the notebooks and testing 08 June 2016, 12:01:35 UTC
0a5b911 running a spell-checker on the comments 08 June 2016, 07:17:33 UTC
ab945df adding value property to Param class 07 June 2016, 19:45:15 UTC
627cd20 Merge pull request #86 from GPflow/fix-autoflow-shareargs Fixed AutoFlow sharing `self.tf_args` between different instances 07 June 2016, 19:31:16 UTC
e9465fa docstringing test 07 June 2016, 19:16:46 UTC
8f8b0cd manually merging model.py from master 07 June 2016, 19:13:12 UTC
ca3cc00 Added unittest for failure case of sharing `tf_args`. 07 June 2016, 17:53:13 UTC
8be3060 Merge pull request #84 from GPflow/tensorflow_pip Remove need for bespoke pip package 07 June 2016, 16:44:22 UTC
badbbdd Removing float32 hacks. No longer necessary since all optimizers now have float64 support. 07 June 2016, 15:21:43 UTC
ff3bad2 Fixed AutoFlow sharing `self.tf_args` between different instances. 07 June 2016, 15:02:39 UTC
19689c4 Removing defunct travis file. 07 June 2016, 11:34:11 UTC
56e901c Updating readme with simpler installation instructions. 07 June 2016, 10:18:51 UTC
2020ef6 Updating readme with simpler installation instructions. 07 June 2016, 10:17:44 UTC
2a03604 Merge pull request #82 from GPflow/fill_constants Fill constants 06 June 2016, 12:39:07 UTC
56196bf Merge branch 'master' into fill_constants 06 June 2016, 12:09:25 UTC
71bfede Merge pull request #83 from GPflow/laplace_distribution adding a Laplace prior 06 June 2016, 12:07:48 UTC
f4521dc using squeeze instead of variance[0] 06 June 2016, 08:46:51 UTC
c89292b fixing up shape issues 05 June 2016, 20:05:30 UTC
c293152 fixing shape issue using pack 05 June 2016, 19:51:18 UTC
8583a9a fill instead of ones * val in likelihoods 05 June 2016, 19:40:19 UTC
4a28e3c kernels.py now uses tf.fill(shape, val) instead of zeros(shape) + val 05 June 2016, 19:36:15 UTC
059e0a5 adding a Laplace prior 31 May 2016, 16:56:53 UTC
420831b Merge pull request #55 from GPflow/autoflow_fix_bugfix Autoflow fix bugfix 31 May 2016, 16:39:22 UTC
4baf133 Merge branch 'master' into autoflow_fix_bugfix 31 May 2016, 16:29:44 UTC
e4ef02f Merge branch 'master' into autoflow_fix_bugfix 31 May 2016, 16:27:43 UTC
8c828f1 Merge pull request #77 from GPflow/logistic_transform_2 Readding logistic transform. 31 May 2016, 16:19:35 UTC
bc507d3 Readding logistic transform. 31 May 2016, 15:21:37 UTC
7ba910f Merge pull request #76 from GPflow/fixUp2 Fix up2 31 May 2016, 15:18:31 UTC
6cfa665 Reverting other JH accidental merge 3d6972. 31 May 2016, 15:02:39 UTC
6b8a9a5 Reverting JH failed fix. 31 May 2016, 14:58:40 UTC
5c78295 Reverting logistic transformation. 31 May 2016, 14:57:53 UTC
af1212a Merge pull request #74 from GPflow/logistic_transform Logistic transform 31 May 2016, 14:06:46 UTC
e315772 Revert "merged model.py: adding jitter to the Cholesky during posterior samples" This reverts commit 3d6972778a93fe88e125ea82068e7c124a75f788, reversing changes made to e784aca71a9e487bed131a2734b1daa774e4f8fb. 31 May 2016, 13:03:57 UTC
1644df1 improvements to tests for transforms, covering logistic 31 May 2016, 09:43:12 UTC
back to top