forked from lawrennd/gpsim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gpsimCandidateOptimise.m
49 lines (39 loc) · 1.19 KB
/
gpsimCandidateOptimise.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
function model = gpsimCandidateOptimise(model, display, iters);
% GPSIMCANDIDATEOPTIMISE Optimise the GPSIM model for candidate genes.
% FORMAT
% DESC optimises the Gaussian process single input motif model for
% a candidate gene in 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, gpsimCreate, gpsimAddCandidate, gpsimCandidateGradient, gpsimCandidateObjective
%
% COPYRIGHT : Neil D. Lawrence, 2007
% SHEFFIELDML
if nargin < 3
iters = 2000;
if nargin < 2
display = 1;
end
end
params = gpsimCandidateExtractParam(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('gpsimCandidateObjective', params, options, ...
'gpsimCandidateGradient', model);
model = gpsimCandidateExpandParam(model, params);