https://github.com/GPflow/GPflow

sort by:
Revision Author Date Message Commit Date
c140477 correcting no-cover statement 29 June 2016, 13:45:31 UTC
4505df2 removing exectuable bit for test_data_object 29 June 2016, 13:28:33 UTC
c050115 removing debug statements 29 June 2016, 12:51:49 UTC
0e1aa36 removing remnanat of calc_feed_dict 29 June 2016, 12:48:27 UTC
4bd0764 lots of new simple tests for DAtaHolder 29 June 2016, 10:57:02 UTC
c5a1306 Updating RELEASE, _version, README incrementing version to 0.2.0 adding @fujiisoup to README detailing new features in RELEASE 29 June 2016, 10:37:39 UTC
6bb7e15 minor edits to docstrings 29 June 2016, 10:29:55 UTC
dfed3ca Merge remote-tracking branch 'origin' into Placeholder 29 June 2016, 10:08:51 UTC
8e008d7 adding a string function for the DataHolder Class2 29 June 2016, 09:45:53 UTC
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
1cb047c Merge pull request #109 from GPflow/multiclass Multiclass 28 June 2016, 12:28:50 UTC
abf3015 Merge branch 'multiclass' of https://github.com/GPflow/GPflow into multiclass 28 June 2016, 12:04:17 UTC
e615c3c Correcting comment. 28 June 2016, 12:04:09 UTC
18bddea fixed typos Some small typos fixed 28 June 2016, 10:51:22 UTC
568ff1a Building up multiclass demo. 27 June 2016, 15:11:34 UTC
1acef30 Building up test. 27 June 2016, 13:43:33 UTC
aeb4de9 docstring improvements 27 June 2016, 13:34:41 UTC
7f4fae9 Building up likelihood tests. 27 June 2016, 13:31:16 UTC
a7c6473 changed the order of the classe and improved docstrings 27 June 2016, 13:23:08 UTC
6516d0e Building up multiclass tests. 27 June 2016, 13:21:42 UTC
7a54ddf Correcting bug. 27 June 2016, 13:14:26 UTC
b91294e Correcting comment. 27 June 2016, 13:02:21 UTC
881f905 Removing partial softmax functionality because it is confusing. 27 June 2016, 12:59:10 UTC
194aaa9 Building up test likelihoods. 27 June 2016, 12:07:00 UTC
a208969 Tidying up likelihood test. 27 June 2016, 12:00:08 UTC
eac7334 Changes to likelihood tests. 27 June 2016, 11:17:34 UTC
050bf0d Correcting an added bug and reimplimenting clipping. 27 June 2016, 11:16:48 UTC
1eb9707 Some additional clipping. 27 June 2016, 11:03:16 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
2c3e80e Removing clipping. 27 June 2016, 09:31:34 UTC
b808f87 Removing Multiclass from non-applicable test. 27 June 2016, 08:45:23 UTC
8860da0 Removing Multiclass from non-applicable test. 27 June 2016, 08:25:19 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
921362e mutliclass: clarifyingpredict_mean function 24 June 2016, 20:03:16 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
1c531c1 Building up likelihood tests. 24 June 2016, 16:43:07 UTC
bb7fc56 Some small changes to multiclass demo. 24 June 2016, 16:13:18 UTC
792a7ad Renaming to invlink for necessary consistency with rest of code. 24 June 2016, 16:12:55 UTC
406c1a3 initial work on DataHo9lder Class 24 June 2016, 16:04:24 UTC
9dcc357 Fixing merge conflict. 24 June 2016, 14:33:21 UTC
dc222be Fixing merge conflict. 24 June 2016, 14:30:59 UTC
15f032e Merging master into branch multiclass. Fixing merge conflict. 24 June 2016, 14:28:42 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
back to top