https://github.com/GPflow/GPflow

sort by:
Revision Author Date Message Commit Date
b331313 Merge branch 'master' of github.com:GPflow/GPflow into get_param_index 08 July 2016, 10:02:43 UTC
62972a2 Fixed tests and small bug. 07 July 2016, 11:49:10 UTC
57876ab Merge pull request #120 from GPflow/lower_bound_transforms improvements to transforms 07 July 2016, 06:52:26 UTC
3f71351 improvements to transforms 06 July 2016, 17:33:24 UTC
dea3e94 get_samples_dict now returns a pandas DataFrame object. 06 July 2016, 12:55:46 UTC
6253621 Merge branch 'master' of github.com:GPflow/GPflow into get_param_index 06 July 2016, 11:11:16 UTC
de38ef7 Merge pull request #108 from GPflow/Placeholder Placeholder 01 July 2016, 12:31:40 UTC
ab157e8 testing samples_dict with fixed param 30 June 2016, 09:27:22 UTC
e8d7432 a simple test for get_samples_dict 30 June 2016, 09:24:52 UTC
45bcb9c improvements to the regression notebook 30 June 2016, 09:13:42 UTC
8a58c57 a new function to make an array of samples into a dictionary of the same form as get_param_dict 30 June 2016, 08:53:56 UTC
5be1aa6 improved docstring 30 June 2016, 08:31:26 UTC
6a0dc6e trivial merge 30 June 2016, 08:27:26 UTC
deaab00 some improvements to update_data notebook 29 June 2016, 19:53:31 UTC
e425bbc removing more notebooks 29 June 2016, 19:20:47 UTC
d2c16d9 removing ipynb_checkpoints 29 June 2016, 19:15:38 UTC
ca32ff2 small improvements to test_param 29 June 2016, 17:06:04 UTC
e8b04bc trivial merge 29 June 2016, 16:11:29 UTC
804435b Merge pull request #112 from GPflow/to_dict `to_dict` 29 June 2016, 15:24:25 UTC
86a4ac5 Merge branch 'master' into to_dict 29 June 2016, 14:12:23 UTC
70ca464 Merge pull request #114 from GPflow/PabloLeon-readmeTypos Update README.md. Thanks @PabloLeon 29 June 2016, 14:11:40 UTC
8a32f66 Update README.md 29 June 2016, 13:55:34 UTC
1a5fba1 improving tests for models that should recompile 29 June 2016, 13:50:05 UTC
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
1e6d90c Merge branch 'master' into to_dict 29 June 2016, 12:27:17 UTC
5c1a44a Merge pull request #113 from GPflow/kern_slicing Kern slicing 29 June 2016, 12:18:44 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
61df1f1 some pep8 changes in test_kerns.py 28 June 2016, 19:00:54 UTC
4d628f1 Small improvements to kernel slicing Kernels with active dimensions now select columns of data using tensorflow's gather, rather that a packed series of scalar indexes. old: tf.pack([X[:,i] for in in active_dims]) new: tf.transpose(tf.gather(tf.transpose(X), active_dims)) the latter is preferred because the graph is much smaller, especially for a large nuber of active dimensions. In addition, the kernel tests have been tidied and extended to cover more of kernels.py. 28 June 2016, 18:53:15 UTC
6d99d4c Fixed test. Also works with python3 now. 28 June 2016, 18:03:47 UTC
4148cd9 Merge branch 'master' of github.com:GPflow/GPflow into to_dict 28 June 2016, 17:33:23 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
644278d Merge branch 'master' of github.com:GPflow/GPflow into to_dict 23 June 2016, 20:25:10 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
4a62175 More clarity in method names: to_dict has become get_parameter_dict from_dict has become set_parameter_dict 17 June 2016, 10:09:20 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
back to top