forked from MBB-team/VBA-toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
VBA_IX_lagged.m
204 lines (163 loc) · 5.99 KB
/
VBA_IX_lagged.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
function [IX,SigmaX,deltaMuX,suffStat] = VBA_IX_lagged(X,y,posterior,suffStat,dim,u,options)
% lagged Laplace-EKF (Gauss-Newton update of hidden states)
% Look-up which hidden states to update
indIn = options.params2update.x;
% Get precision parameters
alphaHat = posterior.a_alpha./posterior.b_alpha;
sigmaHat = posterior.a_sigma./posterior.b_sigma;
iQx = options.priors.iQx;
iQy = options.priors.iQy;
% Preallocate intermediate variables
muX = zeros(dim.n,dim.n_t);
dF_dX = cell(dim.n_t,1);
dG_dX = cell(dim.n_t,1);
dG_dPhi = cell(dim.n_t,1);
SigmaX.current = cell(dim.n_t,1);
SigmaX.inter = cell(dim.n_t-1,1);
dy = zeros(dim.p,dim.n_t);
vy = zeros(dim.p,dim.n_t);
gx = zeros(dim.p,dim.n_t);
dx = zeros(dim.n,dim.n_t);
fx = zeros(dim.n,dim.n_t-1);
div = 0;
if options.DisplayWin
set(options.display.hm(1),'string','VB Gauss-Newton EKF: lagged forward pass... ');
set(options.display.hm(2),'string','0%');
drawnow
end
%---- Initial condition ----%
% form dummy posterior p(X_:0|y_:0) with augmented (lagged) states:
lag = options.backwardLag + 1;
% indx0 = dim.n*(lag-1)+1:dim.n*lag;
% m0 = zeros(dim.n*lag,1);
% m0(indx0) = posterior.muX0;
% S0 = 1e8*eye(dim.n*lag,dim.n*lag);
% S0(indx0,indx0) = posterior.SigmaX0;
m0 = repmat(posterior.muX0,lag,1);
S0 = kron(eye(lag),posterior.SigmaX0);
% evaluate evolution function at current mode
[fx0,dF_dX0] = VBA_evalFun('f',posterior.muX0,posterior.muTheta,u(:,1),options,dim,1);
% evaluate observation function at current mode
[gx(:,1),dG_dX{1},dG_dPhi{1}] = VBA_evalFun('g',X(:,1),posterior.muPhi,u(:,1),options,dim,1);
% check infinite precision transition pdf
iQ = VBA_inv(iQx{1},indIn{1},'replace');
% error terms
dx(:,1) = X(:,1) - fx0;
dx2 = dx(:,1)'*iQ*dx(:,1);
dy(:,1) = y(:,1) - gx(:,1);
dy2 = dy(:,1)'*iQy{1}*dy(:,1);
% covariance matrices
GC = dG_dX{1}'*options.lagOp.C;
FD = dF_dX0'*options.lagOp.D;
FDC = FD - options.lagOp.C;
EuSEu = options.lagOp.Eu*S0*options.lagOp.Eu';
iEuSEu = VBA_inv(EuSEu);
EiEuSEuEu = options.lagOp.E'*iEuSEu*options.lagOp.Eu;
EiEuSEuE = options.lagOp.E'*iEuSEu*options.lagOp.E;
iSt = sigmaHat*GC'*iQy{1}*GC + alphaHat*FDC'*iQ*FDC + EiEuSEuE;
St = VBA_inv(iSt);
e1 = FD*m0 - fx0;
e2 = GC*m0 - gx(:,1);
mt = St*( sigmaHat*GC'*iQy{1}*(y(:,1)+e2) + alphaHat*FDC'*iQ*e1 + EiEuSEuEu*m0 );
%---- Sequential message-passing algorithm: lagged forward pass ----%
for t = 2:dim.n_t
% check infinite precision transition pdf
iQ = VBA_inv(iQx{t},indIn{t},'replace');
% evaluate evolution function at current mode
[fx(:,t-1),dF_dX{t-1}] = VBA_evalFun('f',X(:,t-1),posterior.muTheta,u(:,t),options,dim,t);
% evaluate observation function at current mode
[gx(:,t),dG_dX{t},dG_dPhi{t}] = VBA_evalFun('g',X(:,t),posterior.muPhi,u(:,t),options,dim,t);
% error terms
dx(:,t) = (X(:,t) - fx(:,t-1));
dx2 = dx2 + dx(:,t)'*iQ*dx(:,t);
dy(:,t) = y(:,t) - gx(:,t);
dy2 = dy2 + dy(:,t)'*iQy{t}*dy(:,t);
% covariance matrices
GC = dG_dX{t}'*options.lagOp.C;
FD = dF_dX{t-1}'*options.lagOp.D;
FDC = FD - options.lagOp.C;
EuSEu = options.lagOp.Eu*St*options.lagOp.Eu';
iEuSEu = VBA_inv(EuSEu);
EiEuSEuEu = options.lagOp.E'*iEuSEu*options.lagOp.Eu;
EiEuSEuE = options.lagOp.E'*iEuSEu*options.lagOp.E;
iSt = sigmaHat*GC'*iQy{t}*GC + alphaHat*FDC'*iQ*FDC + EiEuSEuE;
St = VBA_inv(iSt);
e1 = dF_dX{t-1}'*X(:,t-1) - fx(:,t-1);
e2 = dG_dX{t}'*X(:,t) - gx(:,t);
mt = St*( sigmaHat*GC'*iQy{t}*(y(:,t)+e2) + alphaHat*FDC'*iQ*e1 + EiEuSEuEu*mt );
if t >= lag
% update lagged posterior on states
SigmaX.current{t-lag+1} = options.lagOp.M*St*options.lagOp.M';
muX(:,t-lag+1) = options.lagOp.M*mt;
SigmaX.inter{t-lag+1} = St(1:dim.n,dim.n+1:2*dim.n);
% Predictive density (data space)
V = (1./sigmaHat).*VBA_inv(iQy{t-lag+1},[]) + dG_dX{t-lag+1}'*SigmaX.current{t-lag+1}*dG_dX{t-lag+1};
if dim.n_phi > 0
V = V + dG_dPhi{t-lag+1}'*posterior.SigmaPhi*dG_dPhi{t-lag+1};
end
vy(:,t-lag+1) = diag(V);
end
% Display progress
if options.DisplayWin && mod(t,dim.n_t./10) < 1
set(options.display.hm(2),'string',[num2str(floor(100*t/dim.n_t)),'%']);
drawnow
end
% Accelerate divergent update
if isweird({dy2,dx2,dG_dX{t},dF_dX{t-1},SigmaX.current{t}})
div = 1;
break
end
end %--- end of lagged forward pass ---%
%---- End boundary of the time series ----%
for k = 2:lag
% update lagged posterior on states
ik = (k-1)*dim.n+1:k*dim.n;
SigmaX.current{dim.n_t-(lag-k)} = St(ik,ik);
muX(:,dim.n_t-(lag-k)) = mt(ik);
% Predictive density (data space)
V = (1./sigmaHat).*VBA_inv(iQy{dim.n_t-(lag-k)},[]) + dG_dX{dim.n_t-(lag-k)}'*SigmaX.current{dim.n_t-(lag-k)}*dG_dX{dim.n_t-(lag-k)};
if dim.n_phi > 0
V = V + dG_dPhi{dim.n_t-(lag-k)}'*posterior.SigmaPhi*dG_dPhi{dim.n_t-(lag-k)};
end
vy(:,dim.n_t-(lag-k)) = diag(V);
if k < lag
SigmaX.inter{dim.n_t-(lag-k)} = St(ik,ik+dim.n);
end
end
if options.DisplayWin
set(options.display.hm(2),'string','OK.');
drawnow
end
% Gauss-Newton update step
deltaMuX = muX - X;
% variational energy
IX = -0.5.*sigmaHat.*dy2 -0.5*alphaHat.*dx2;
if isweird(IX) || div
IX = -Inf;
end
% sufficient statistics
suffStat.IX = IX;
suffStat.gx = gx;
suffStat.vy = vy;
suffStat.dx = dx;
suffStat.dy = dy;
suffStat.dx2 = dx2;
suffStat.dy2 = dy2;
suffStat.div = div;
% display forward and backward passes
if options.GnFigs
try % use curretn window
clf(suffStat.haf);
catch % open new window
suffStat.haf = figure('visible','off','color',[1,1,1]);
pos = get(suffStat.haf,'position');
set(suffStat.haf,'position',pos-[pos(3)./2 1.2*pos(4) 0 0],'visible','on')
end
h(1) = subplot(2,1,1,'parent',suffStat.haf);
plot(h(1),dx')
title(h(1),'state noise')
h(2) = subplot(2,1,2,'parent',suffStat.haf);
plot(h(2),muX')
title(h(2),'posterior mean')
axis(h,'tight')
end