-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscc_count.m
49 lines (28 loc) · 1.19 KB
/
scc_count.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 [ class_id ] = scc_count( X,Y,K )
[p1,n] = size(X);
eucli_dis = norm(X - mean(X,2),'fro')^2;
logit_vec = log ( mean(Y,2)) ;
% null_dev_Y = sum(sum( - Y .* logit_vec )) + n * sum( exp( logit_vec) ) ;
null_dev_Y = sum(sum( - Y .* logit_vec )) + n * sum( exp( logit_vec) ) + sum(Y .* log(Y+1e-5)) - sum(Y) ;
null_dev_Y = null_dev_Y * 2;
ratio = (eucli_dis) / ( (null_dev_Y) + (eucli_dis ));
fs_weight = [ones(1,p1)* ratio/ (p1) 1- ratio];
%%% Select K and phi in weights
[K_best,phi,w] = select_K_target_gower( [X;Y], fs_weight,@knn_weight_gower_weighted_dense,@knn_weight_gower_concat_2data_weighted_tune,1);
w = w ./ sum(w);
[U_output,Z_output] = scc_count_ARP(X,Y,w,K);
%% Rand Index
V_round = round(Z_output,3);
[class_id,iter_cut] = get_cluster_assignment(V_round,w,n,K);
len_V = size(V_round,3);
if length(unique(class_id)) == 1
class_id_mat = zeros(len_V,n);
class_no_vec = zeros(len_V,1);
for i = 1:len_V
[class_no_vec(i), class_id_mat(i,:)] = group_assign_vertice(V_round(:,:,i),w,n);
end
iter_cut = max(find(class_no_vec > 1));
class_id = class_id_mat(iter_cut,:);
end
% tabulate(class_id);
end