Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 65 lines (51 sloc) 1.64 KB
function [missrate, labels,Z, CPUtime] = TSC_Update(Data, q, Label)
L = length(unique(Label));
[labels,Z, ~, CPUtime] = TSC(Data,q,L);
labels = bestMap(Label,labels);
missrate = Misclassification(labels, Label);
end
%
% This function implements the TSC algorithm from the paper
% ``Robust subspace clustering via thresholding'' by Reinhard Heckel and Helmut Bölcskei
% Reinhard Heckel, 2013
%
% X: m x N matrix of N data points
% q: input parameter of TSC
% L: number of clusters, optional. If not provided, L is estimated via the eigengap heuristic%
% labels: labels of the data points
% Z: adjacency matrix
% nL: estimated number of clusters
function [labels,Z,nL, CPUtime] = TSC(X,q,L)
start = cputime;
% normalize the data points
X = normc(X);
[m,N] = size(X);
Z = zeros(N,N);
for i=1:N
corvec = abs(X'*X(:,i));
corvec(i) = 0; % so TSC will not select it
[el,order] = sort(corvec, 'descend');
Z(i, order(1:q) ) = exp(-2*acos(el(1:q))); % better than squared arcsin
end
Z = Z + Z';
% (normalized) spectral clustering step
D = diag( 1./sqrt(sum(Z)+eps) );
Lap = speye(N) - D * Z * D;
[U,S,V] = svd(Lap);
%% estimate L, if not provided as input
if(nargin == 3)
nL = L;
else
svals = diag(S);
[ min_val , ind_min ] = min( diff( svals(1:end-1) ) ) ;
nL = N - ind_min;
end
%%
V = V(:,N-nL+1:N);
V = normr(V); % normalize rows
warning off;
maxiter = 1000; % maximum number of iterations
replicates = 200; % number of replications
labels = kmeans(V,nL,'maxiter',maxiter,'replicates',replicates,'EmptyAction','singleton');
CPUtime = cputime - start;
end