⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sardeath.m

📁 This demo nstrates the use of the reversible jump MCMC simulated annealing for neural networks. This
💻 M
字号:
function [k,mu,M,aDeath,rDeath] = sarDeath(aDeath,rDeath,k,mu,M,x,y,t,criterion,walkInt);% PURPOSE : Performs the death move of the reversible jump MCMC simulated annealing.% INPUTS  : - aDeath: Number of times the death move has been accepted.%           - rDeath: Number of times the death move has been rejected.%           - k : Number of basis functions.%           - mu : Basis functions centres.%           - M : Regressors matrix.%           - x : Input data.%           - y : Target data.%           - t : Current time step.%           - criterion: Model selection criterion (MDL or AIC).%           - walkInt: Parameter defining the compact set from which mu is sampled.% AUTHOR  : Nando de Freitas - Thanks for the acknowledgement :-)% DATE    : 21-01-99if nargin < 10, error('Not enough input arguments.'); end[N,d] = size(x);      % N = number of data, d = dimension of x.[N,c] = size(y);      % c = dimension of y, i.e. number of outputs.insideDeath=1;uD=rand(1);% INITIALISE H AND P MATRICES:% ===========================invH=zeros(k(t)+1+d,k(t)+1+d,c);P=zeros(N,N,c);invHproposal=zeros(k(t)+d,k(t)+d,c);Pproposal=zeros(N,N,c);for i=1:c,  invH(:,:,i) = M'*M;  P(:,:,i) = eye(N) - M*inv(invH(:,:,i))*M';end;% CHOOSE UNIFORMLY A BASIS FUNCTION TO BE DELETED:% ===============================================proposalPos= d+1+unidrnd(length(mu{t}(:,1)),1,1);if (proposalPos==d+1+k(t)),  Mproposal = [M(:,1:proposalPos-1)];     else  Mproposal = [M(:,1:proposalPos-1) M(:,proposalPos+1:k(t)+d+1)];      end;for i=1:c,  invHproposal(:,:,i) = Mproposal'*Mproposal;  Pproposal(:,:,i) = eye(N) - Mproposal*inv(invHproposal(:,:,i))*Mproposal'; end;% PERFORM A DEATH MOVE:% ====================small = 0; % To avoid numerical problems.ratio= k(t) * inv(prod(walkInt)) * exp(criterion) * ((y(:,1)'*P(:,:,1)*y(:,1)+small)/(y(:,1)'*Pproposal(:,:,1)*y(:,1)+small))^(N/2);   for i=2:c,  ratio= ratio * ((y(:,i)'*P(:,:,i)*y(:,i)+small)/(y(:,i)'*Pproposal(:,:,i)*y(:,i)+small))^(N/2); end;acceptance = min(1,ratio);  if (uD<acceptance),  previousMu = mu{t};  if (proposalPos==(1+d+1)),    mu{t+1} = [previousMu(2:k(t),:)];   elseif (proposalPos==(1+d+k(t))),    mu{t+1} = [previousMu(1:k(t)-1,:)];  else    mu{t+1} = [previousMu(1:proposalPos-1-d-1,:); previousMu(proposalPos-d-1+1:k(t),:)];  end;  k(t+1) = k(t)-1;  M=Mproposal;  aDeath=aDeath+1;else  mu{t+1} = mu{t};  k(t+1) = k(t);  rDeath=rDeath+1;  M=M;end;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -