-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnmf.m
More file actions
executable file
·318 lines (303 loc) · 15.1 KB
/
nmf.m
File metadata and controls
executable file
·318 lines (303 loc) · 15.1 KB
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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
% Nonnegative Matrix Factorization by Alternating Nonnegativity Constrained Least Squares
% using Block Principal Pivoting/Active Set method
%
% This software solves one the following problems: given A and k, find W and H such that
% (1) minimize 1/2 * || A-WH ||_F^2
% (2) minimize 1/2 * ( || A-WH ||_F^2 + alpha * || W ||_F^2 + beta * || H ||_F^2 )
% (3) minimize 1/2 * ( || A-WH ||_F^2 + alpha * || W ||_F^2 + beta * (sum_(i=1)^n || H(:,i) ||_1^2 ) )
% where W>=0 and H>=0 elementwise.
%
% Reference:
% [1] For using this software, please cite:
% Jingu Kim and Haesun Park, Toward Faster Nonnegative Matrix Factorization: A New Algorithm and Comparisons,
% In Proceedings of the 2008 Eighth IEEE International Conference on Data Mining (ICDM'08), 353-362, 2008
% [2] If you use 'nnls_solver'='as' (see below), please cite:
% Hyunsoo Kim and Haesun Park, Nonnegative Matrix Factorization Based on Alternating Nonnegativity Constrained Least Squares and Active Set Method,
% SIAM Journal on Matrix Analysis and Applications, 2008, 30, 713-730
%
% Written by Jingu Kim (jingu@cc.gatech.edu)
% Copyright 2008-2009 by Jingu Kim and Haesun Park,
% School of Computational Science and Engineering,
% Georgia Institute of Technology
%
% Check updated code at http://www.cc.gatech.edu/~jingu
% Please send bug reports, comments, or questions to Jingu Kim.
% This code comes with no guarantee or warranty of any kind.
%
% Last modified Feb-20-2010
%
% <Inputs>
% A : Input data matrix (m x n)
% k : Target low-rank
%
% (Below are optional arguments: can be set by providing name-value pairs)
% TYPE : 'plain' to use formulation (1)
% 'regularized' to use formulation (2)
% 'sparse' to use formulation (3)
% Default is 'regularized', which is recommended for quick application testing unless 'sparse' or 'plain' is explicitly needed.
% If sparsity is needed for 'W' factor, then apply this function for the transpose of 'A' with formulation (3).
% Then, exchange 'W' and 'H' and obtain the transpose of them.
% Imposing sparsity for both factors is not recommended and thus not included in this software.
% NNLS_SOLVER : 'bp' to use the algorithm in [1]
% 'as' to use the algorithm in [2]
% Default is 'bp', which is in general faster.
% ALPHA : Parameter alpha in the formulation (2) or (3).
% Default is the average of all elements in A. No good justfication for this default value, and you might want to try other values.
% BETA : Parameter beta in the formulation (2) or (3).
% Default is the average of all elements in A. No good justfication for this default value, and you might want to try other values.
% MAX_ITER : Maximum number of iterations. Default is 100.
% MIN_ITER : Minimum number of iterations. Default is 20.
% MAX_TIME : Maximum amount of time in seconds. Default is 100,000.
% W_INIT : (m x k) initial value for W.
% H_INIT : (k x n) initial value for H.
% TOL : Stopping tolerance. Default is 1e-3. If you want to obtain a more accurate solution, decrease TOL and increase MAX_ITER at the same time.
% VERBOSE : 0 (default) - No debugging information is collected.
% 1 (debugging purpose) - History of computation is returned by 'HIS' variable.
% 2 (debugging purpose) - History of computation is additionally printed on screen.
% <Outputs>
% W : Obtained basis matrix (m x k)
% H : Obtained coefficients matrix (k x n)
% iter : Number of iterations
% HIS : (debugging purpose) History of computation
% <Usage Examples>
% nmf(A,10)
% nmf(A,20,'verbose',2)
% nmf(A,30,'verbose',2,'nnls_solver','as')
% nmf(A,5,'verbose',2,'type','sparse')
% nmf(A,60,'verbose',1,'type','plain','w_init',rand(m,k))
% nmf(A,70,'verbose',2,'type','sparse','nnls_solver','bp','alpha',1.1,'beta',1.3)
function [W,H,iter,HIS]=nmf(A,k,varargin)
[m,n] = size(A);, ST_RULE = 1;
% Default configuration
par.m = m;
par.n = n;
par.type = 'regularized';
par.nnls_solver = 'bp';
par.alpha = 0;
par.beta = 0;
par.max_iter = 100;
par.min_iter = 20;
par.max_time = 1e6;
par.tol = 1e-3;
par.verbose = 0;
W = rand(m,k);
H = rand(k,n);
% Read optional parameters
if (rem(length(varargin),2)==1)
error('Optional parameters should always go by pairs');
else
for i=1:2:(length(varargin)-1)
switch upper(varargin{i})
case 'TYPE', par.type = varargin{i+1};
case 'NNLS_SOLVER', par.nnls_solver = varargin{i+1};
case 'ALPHA', argAlpha = varargin{i+1};,par.alpha = argAlpha;
case 'BETA', argBeta = varargin{i+1};,par.beta = argBeta;
case 'MAX_ITER', par.max_iter = varargin{i+1};
case 'MIN_ITER', par.min_iter = varargin{i+1};
case 'MAX_TIME', par.max_time = varargin{i+1};
case 'W_INIT', W = varargin{i+1};
case 'H_INIT', H = varargin{i+1};
case 'TOL', par.tol = varargin{i+1};
case 'VERBOSE', par.verbose = varargin{i+1};
otherwise
error(['Unrecognized option: ',varargin{i}]);
end
end
end
% for regularized/sparse case
if strcmp(par.type,'regularized')
if ~exist('argAlpha','var') par.alpha = mean(A(:));, end
if ~exist('argBeta','var') par.beta = mean(A(:));, end
salphaI = sqrt(par.alpha)*eye(k);
sbetaI = sqrt(par.beta)*eye(k);
zerokn = zeros(k,n);
zerokm = zeros(k,m);
elseif strcmp(par.type,'sparse')
if ~exist('argAlpha','var') par.alpha = mean(A(:));, end
if ~exist('argBeta','var')par.beta = mean(A(:));, end
salphaI = sqrt(par.alpha)*eye(k);
sbetaE = sqrt(par.beta)*ones(1,k);
betaI = par.beta*ones(k,k);
zero1n = zeros(1,n);
zerokm = zeros(k,m);
elseif ~strcmp(par.type,'plain')
error(['Unrecognized type: use ''plain'', ''regularized'', or ''sparse''.']);
end
if ~strcmp(par.nnls_solver,'bp') && ~strcmp(par.nnls_solver,'as')
error(['Unrecognized nnls_solver: use ''bp'' or ''as''.']);
end
display(par);
HIS = 0;
if par.verbose % collect information for analysis/debugging
[gradW,gradH] = getGradient(A,W,H,par.type,par.alpha,par.beta);
initGrNormW = norm(gradW,'fro');
initGrNormH = norm(gradH,'fro');
initNorm = norm(A,'fro');
numSC = 3;
initSCs = zeros(numSC,1);
for j=1:numSC
initSCs(j) = getInitCriterion(j,A,W,H,par.type,par.alpha,par.beta,gradW,gradH);
end
%---(1)------(2)--------(3)--------(4)--------(5)---------(6)----------(7)------(8)-----(9)-------(10)--------------(11)-------
% iter # | elapsed | totalTime | subIterW | subIterH | rel. obj.(%) | NM_GRAD | GRAD | DELTA | W density (%) | H density (%)
%------------------------------------------------------------------------------------------------------------------------------
HIS = zeros(1,11);
HIS(1,[1:5])=0;
ver.initGrNormW = initGrNormW;
ver.initGrNormH = initGrNormH;
ver.initNorm = initNorm; HIS(1,6)=ver.initNorm;
ver.SC1 = initSCs(1); HIS(1,7)=ver.SC1;
ver.SC2 = initSCs(2); HIS(1,8)=ver.SC2;
ver.SC3 = initSCs(3); HIS(1,9)=ver.SC3;
ver.W_density = length(find(W>0))/(m*k); HIS(1,10)=ver.W_density;
ver.H_density = length(find(H>0))/(n*k); HIS(1,11)=ver.H_density;
if par.verbose == 2, display(ver);, end
tPrev = cputime;
end
tStart = cputime;, tTotal = 0;
initSC = getInitCriterion(ST_RULE,A,W,H,par.type,par.alpha,par.beta);
SCconv = 0; SC_COUNT = 3;
for iter=1:par.max_iter
switch par.type
case 'plain'
[H,gradHX,subIterH] = nnlsm(W,A,H,par.nnls_solver);
[W,gradW,subIterW] = nnlsm(H',A',W',par.nnls_solver);, W=W';, gradW=gradW';
gradH = (W'*W)*H - W'*A;
case 'regularized'
[H,gradHX,subIterH] = nnlsm([W;sbetaI],[A;zerokn],H,par.nnls_solver);
[W,gradW,subIterW] = nnlsm([H';salphaI],[A';zerokm],W',par.nnls_solver);, W=W';, gradW=gradW';
gradH = (W'*W)*H - W'*A + par.beta*H;
case 'sparse'
[H,gradHX,subIterH] = nnlsm([W;sbetaE],[A;zero1n],H,par.nnls_solver);
[W,gradW,subIterW] = nnlsm([H';salphaI],[A';zerokm],W',par.nnls_solver);, W=W';, gradW=gradW';
gradH = (W'*W)*H - W'*A + betaI*H;
end
if par.verbose % collect information for analysis/debugging
elapsed = cputime-tPrev;
tTotal = tTotal + elapsed;
ver = 0;
idx = iter+1;
%---(1)------(2)--------(3)--------(4)--------(5)---------(6)----------(7)------(8)-----(9)-------(10)--------------(11)-------
% iter # | elapsed | totalTime | subIterW | subIterH | rel. obj.(%) | NM_GRAD | GRAD | DELTA | W density (%) | H density (%)
%------------------------------------------------------------------------------------------------------------------------------
ver.iter = iter; HIS(idx,1)=iter;
ver.elapsed = elapsed; HIS(idx,2)=elapsed;
ver.tTotal = tTotal; HIS(idx,3)=tTotal;
ver.subIterW = subIterW; HIS(idx,4)=subIterW;
ver.subIterH = subIterH; HIS(idx,5)=subIterH;
ver.relError = norm(A-W*H,'fro')/initNorm; HIS(idx,6)=ver.relError;
ver.SC1 = getStopCriterion(1,A,W,H,par.type,par.alpha,par.beta,gradW,gradH)/initSCs(1); HIS(idx,7)=ver.SC1;
ver.SC2 = getStopCriterion(2,A,W,H,par.type,par.alpha,par.beta,gradW,gradH)/initSCs(2); HIS(idx,8)=ver.SC2;
ver.SC3 = getStopCriterion(3,A,W,H,par.type,par.alpha,par.beta,gradW,gradH)/initSCs(3); HIS(idx,9)=ver.SC3;
ver.W_density = length(find(W>0))/(m*k); HIS(idx,10)=ver.W_density;
ver.H_density = length(find(H>0))/(n*k); HIS(idx,11)=ver.H_density;
if par.verbose == 2, display(ver);, end
tPrev = cputime;
end
if (iter > par.min_iter)
SC = getStopCriterion(ST_RULE,A,W,H,par.type,par.alpha,par.beta,gradW,gradH);
if (par.verbose && (tTotal > par.max_time)) || (~par.verbose && ((cputime-tStart)>par.max_time))
break;
elseif (SC/initSC <= par.tol)
SCconv = SCconv + 1;
if (SCconv >= SC_COUNT), break;, end
else
SCconv = 0;
end
end
end
[m,n]=size(A);
norm2=sqrt(sum(W.^2,1));
toNormalize = norm2>0;
W(:,toNormalize) = W(:,toNormalize)./repmat(norm2(toNormalize),m,1);
H(toNormalize,:) = H(toNormalize,:).*repmat(norm2(toNormalize)',1,n);
final.iterations = iter;
if par.verbose
final.elapsed_total = tTotal;
else
final.elapsed_total = cputime-tStart;
end
final.relative_error = norm(A-W*H,'fro')/norm(A,'fro');
final.W_density = length(find(W>0))/(m*k);
final.H_density = length(find(H>0))/(n*k);
display(final);
end
%------------------------------------------------------------------------------------------------------------------------
% Utility Functions
%------------------------------------------------------------------------------------------------------------------------
function [X,grad,iter] = nnlsm(A,B,init,solver)
switch solver
case 'bp'
[X,grad,iter] = nnlsm_blockpivot(A,B,0,init);
case 'as'
[X,grad,iter] = nnlsm_activeset(A,B,1,0,init);
end
end
%-------------------------------------------------------------------------------
function retVal = getInitCriterion(stopRule,A,W,H,type,alpha,beta,gradW,gradH)
% STOPPING_RULE : 1 - Normalized proj. gradient
% 2 - Proj. gradient
% 3 - Delta by H. Kim
% 0 - None (want to stop by MAX_ITER or MAX_TIME)
if nargin~=9
[gradW,gradH] = getGradient(A,W,H,type,alpha,beta);
end
[m,k]=size(W);, [k,n]=size(H);, numAll=(m*k)+(k*n);
switch stopRule
case 1
retVal = norm([gradW; gradH'],'fro')/numAll;
case 2
retVal = norm([gradW; gradH'],'fro');
case 3
retVal = getStopCriterion(3,A,W,H,type,alpha,beta,gradW,gradH);
case 0
retVal = 1;
end
end
%-------------------------------------------------------------------------------
function retVal = getStopCriterion(stopRule,A,W,H,type,alpha,beta,gradW,gradH)
% STOPPING_RULE : 1 - Normalized proj. gradient
% 2 - Proj. gradient
% 3 - Delta by H. Kim
% 0 - None (want to stop by MAX_ITER or MAX_TIME)
if nargin~=9
[gradW,gradH] = getGradient(A,W,H,type,alpha,beta);
end
switch stopRule
case 1
pGradW = gradW(gradW<0|W>0);
pGradH = gradH(gradH<0|H>0);
pGrad = [gradW(gradW<0|W>0); gradH(gradH<0|H>0)];
pGradNorm = norm(pGrad);
retVal = pGradNorm/length(pGrad);
case 2
pGradW = gradW(gradW<0|W>0);
pGradH = gradH(gradH<0|H>0);
pGrad = [gradW(gradW<0|W>0); gradH(gradH<0|H>0)];
retVal = norm(pGrad);
case 3
resmat=min(H,gradH); resvec=resmat(:);
resmat=min(W,gradW); resvec=[resvec; resmat(:)];
deltao=norm(resvec,1); %L1-norm
num_notconv=length(find(abs(resvec)>0));
retVal=deltao/num_notconv;
case 0
retVal = 1e100;
end
end
%-------------------------------------------------------------------------------
function [gradW,gradH] = getGradient(A,W,H,type,alpha,beta)
switch type
case 'plain'
gradW = W*(H*H') - A*H';
gradH = (W'*W)*H - W'*A;
case 'regularized'
gradW = W*(H*H') - A*H' + alpha*W;
gradH = (W'*W)*H - W'*A + beta*H;
case 'sparse'
k=size(W,2);
betaI = beta*ones(k,k);
gradW = W*(H*H') - A*H' + alpha*W;
gradH = (W'*W)*H - W'*A + betaI*H;
end
end