-
Notifications
You must be signed in to change notification settings - Fork 92
/
gpdisimOptimise.m
51 lines (41 loc) · 1.12 KB
/
gpdisimOptimise.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
function model = gpdisimOptimise(model, display, iters);
% GPDISIMOPTIMISE Optimise the GPSIM model.
% FORMAT
% DESC optimises the Gaussian process single input motif model for
% a given number of iterations.
% ARG model : the model to be optimised.
% ARG display : whether or not to display while optimisation
% proceeds, set to 2 for the most verbose and 0 for the least
% verbose.
% ARG iters : number of iterations for the optimisation.
% RETURN model : the optimised model.
%
% SEEALSO : scg, conjgrad, gpdisimCreate, gpdisimGradient, gpdisimObjective
%
% COPYRIGHT : Neil D. Lawrence, 2006
%
% COPYRIGHT : Antti Honkela, 2007
% SHEFFIELDML
if nargin < 3
iters = 2000;
if nargin < 2
display = 1;
end
end
params = gpdisimExtractParam(model);
options = optOptions;
if display
options(1) = 1;
if length(params) <= 100
options(9) = 1;
end
end
options(14) = iters;
if isfield(model, 'optimiser')
optim = str2func(model.optimiser);
else
optim = str2func('conjgrad');
end
params = optim('gpdisimObjective', params, options, ...
'gpdisimGradient', model);
model = gpdisimExpandParam(model, params);