-
Notifications
You must be signed in to change notification settings - Fork 2
/
NormalRV.m
184 lines (152 loc) · 4.23 KB
/
NormalRV.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
function [testAcc valAcc] = NormalRV(datasetsname,lambdas,R_no,nForgetPoints,costs,kps,leaveout, dt_out)
% test reservior kernel with normal state distribution using svm
% tune the parameter using 5 cross validation or leaveout
eval(['load(''./prepared_datasets/',datasetsname,'.mat'');']);
if exist('info', 'var')
SpikingInput = info.spiking;
if dt_out==0
dt_out = info.dt;
end
else
SpikingInput = 0;
dt_out = 0;
end
if nargin <1
help NormalRV;
elseif nargin ==1
lambdas = 1;
elseif nargin ==2
R_no = 25;
elseif nargin ==3
n = size(training{1},2);
nForgetPoints = min(100,n/3);
elseif nargin==4
costs = 100;
elseif nargin ==5
kps = 1;
elseif nargin ==6
leaveout = true;
end
nLambdas = length(lambdas);
nKps= length(kps);
nCosts = length(costs);
nsv = zeros(nLambdas,nKps,nCosts);
acc = zeros(nLambdas,nKps,nCosts);
% using 5-cross validation to tune the parameter
kFold = 5;
classes = unique(training_label);
nClasses = length(classes);
permcell = cell(nClasses,1);
nSample = cell(nClasses,1);
minS = 1000;
for i=1:nClasses
nSample{i} = find(training_label==classes(i));
len = length(nSample{i});
if minS>len
minS = len;
end
permcell{i} = randperm(len);
end
if minS<5
%using leave out
leaveout = true;
end
if leaveout
kFold = 1;
end
fold_ind = ones(nClasses,1);
for k=1:kFold
if ~leaveout
train_ind = [];
test_ind = [];
for i=1:nClasses
fold_size = floor(length(nSample{i}) ./kFold);
indexTr = permcell{i}([1:fold_ind(i) - 1 fold_ind(i) + fold_size:end]);
train_ind = [train_ind ; nSample{i}(indexTr)];
indexTe = permcell{i}(fold_ind(i):fold_ind(i) + fold_size - 1);
test_ind = [test_ind;nSample{i}(indexTe)];
fold_ind(i) = fold_ind(i)+fold_size;
end
trXD = training(train_ind,:);
tr_label = training_label(train_ind);
teXD = training(test_ind,:);
te_label = training_label(test_ind);
else
trXD = training;
tr_label = training_label;
teXD = testing;
te_label = testing_label;
end
for i = 1:nLambdas
val = lambdas(i);
[trX,teX] = compute_KernelRV_normal(trXD,teXD,R_no,val,nForgetPoints, dt_out, SpikingInput);
%%
num1 = size(trX,1);
X = [trX;teX];
temp = mapstd(X');
temp = temp';
trX = temp(1:num1,:);
teX = temp(num1+1:end,:);
fold_ind = ones(nClasses,1);
for j=1:nKps
kp = kps(j);
for p=1:nCosts
C = 10^costs(p);
opinion = ['-s 0 -c ' num2str(C) ' -gamma ' num2str(kp) ' -t 2 -q'];
model = svmtrain(tr_label, trX, opinion);
nSV = model.totalSV;
[Y0, accuracy, ~] = svmpredict(te_label,teX, model,'-b 0');
acc(i,j,p) = acc(i,j,p)+accuracy(1);
nsv(i,j,p) =nsv(i,j,p)+nSV;
end
end
end
end
acc = acc / kFold;
nsv = nsv / kFold;
bestNsv = 0;
[bestAcc,] = max(acc(:));
acci = find(acc(:) == bestAcc);
if(length(acci)>1)
tmpNSV = nsv(:);
[bestNsv,] = min(tmpNSV(acci));
end
indexI = 0;
indexJ = 0;
indexP = 0;
for i = 1:nLambdas
for j=1:nKps
for p=1:nCosts
if(bestNsv==0)
if(bestAcc==acc(i,j,p))
indexI = i;
indexJ = j;
indexP = p;
end
else
if(bestAcc==acc(i,j,p) && bestNsv==nsv(i,j,p))
indexI = i;
indexJ = j;
indexP = p;
end
end
end
end
end
lambda = lambdas(indexI);
kp = kps(indexJ);
C = 10^costs(indexP);
valAcc = bestAcc;
[trainX,testX] = compute_KernelRV_normal(training,testing,R_no,lambda,nForgetPoints, dt_out, SpikingInput);
num1 = size(trainX,1);
X = [trainX;testX];
temp = mapstd(X');
temp = temp';
trainX = temp(1:num1,:);
testX = temp(num1+1:end,:);
%%
opinion = ['-s 0 -c ' num2str(C) ' -gamma ' num2str(kp) ' -t 2 -q'];
model = svmtrain(training_label, trainX, opinion);
[Y0, accuracy, ~] = svmpredict(testing_label,testX, model, '-b 0');
testAcc = accuracy(1);
end