[d8e26d]: / SLEP_package_4.1 / SLEP / functions / pathWise / pathSolutionLogistic.m

Download this file

281 lines (217 with data), 11.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
function [X, C]=pathSolutionLogistic(A, y, z, opts)
%
%% Fuction pathSolution:
% Solving the pathwise solutions
%
%% Input & Output parameters
% See the description of the related functions
%
%% Copyright (C) 2009-2010 Jun Liu, and Jieping Ye
%
% You are suggested to first read the Manual.
%
% For any problem, please contact with Jun Liu via j.liu@asu.edu
%
% Last modified 2 August 2009.
%
% Related functions:
% sll_opts,
% eppVector, eppMatrix, eplb,
%
% LogisticR, LogisticC,
% nnLogisticR, nnLogisticC
% glLogisticR, mtLogisticR, mclLogisticR
%%
switch(opts.fName)
case 'LogisticR'
z_num=length(z); % the number of parameters
[z_value, z_ind]=sort(-z); % sort z in a decresing order
z_value=-z_value; % z_value in a decreasing order
n=size(A,2); % the dimensionality of the data
X=zeros(n,z_num); % set the size of output X
C=zeros(1,z_num); % set the size of output C
% run the code to compute the first solution
[x, c, funVal]=LogisticR(A, y, z_value(1), opts);
X(:,z_ind(1))=x; % store the solution x
C(1,z_ind(1))=c; % store the solution c
% set .init for warm start
opts.init=1; % using the defined ones
for i=2:z_num
opts.x0=x; % warm-start of x
opts.c0=c; % warm-start of c
% run the function LogisticR
[x, c, funVal]=LogisticR(A, y, z_value(i), opts);
X(:,z_ind(i))=x; % store the solution x
C(1,z_ind(i))=c; % store the solution c
end
case 'LogisticC'
z_num=length(z); % the number of parameters
[z_value, z_ind]=sort(z); % sort z in an ascending order
n=size(A,2); % the dimensionality of the data
X=zeros(n,z_num); % set the size of output X
C=zeros(1,z_num); % set the size of output C
% run the code to compute the first solution
[x, c, funVal]=LogisticC(A, y, z_value(1), opts);
X(:,z_ind(1))=x; % store the solution x
C(1,z_ind(1))=c; % store the solution c
% set .init for warm start
opts.init=1; % using the defined ones
for i=2:z_num
opts.x0=x; % warm-start of x
opts.c0=c; % warm-start of c
% run the function LogisticC
[x, c, funVal]=LogisticC(A, y, z_value(i), opts);
X(:,z_ind(i))=x; % store the solution x
C(1,z_ind(i))=c; % store the solution c
end
case 'glLogisticR'
z_num=length(z); % the number of parameters
[z_value, z_ind]=sort(-z); % sort z in a decresing order
z_value=-z_value; % z_value in a decreasing order
n=size(A,2); % the dimensionality of the data
X=zeros(n,z_num); % set the size of output X
C=zeros(1,z_num); % set the size of output C
% run the code to compute the first solution
[x, c, funVal]=glLogisticR(A, y, z_value(1), opts);
X(:,z_ind(1))=x; % store the solution x
C(1, z_ind(1))=c; % store the solution c
% set .init for warm start
opts.init=1; % using the defined ones
for i=2:z_num
opts.x0=x; % warm-start of x
opts.c0=c; % warm-start of c
% run the function glLogisticR
[x, c, funVal]=glLogisticR(A, y, z_value(i), opts);
X(:,z_ind(i))=x; % store the solution x
C(1, z_ind(i))=c; % store the solution c
end
case 'mtLogisticR'
z_num=length(z); % the number of parameters
[z_value, z_ind]=sort(-z); % sort z in a decresing order
z_value=-z_value; % z_value in a decreasing order
n=size(A,2); % the dimensionality of the data
k=length(opts.ind)-1; % the number of tasks
X=zeros(n,k,z_num); % set the size of output X
C=zeros(z_num, k); % set the size of output C
% run the code to compute the first solution
[x, c, funVal]=mtLogisticR(A, y, z_value(1), opts);
X(:,:,z_ind(1))=x; % store the solution x
C(z_ind(1), :)=c; % store the solution c
% set .init for warm start
opts.init=1; % using the defined ones
for i=2:z_num
opts.x0=x; % warm-start of x
opts.c0=c; % warm-start of c
% run the function mtLogisticR
[x, c, funVal]=mtLogisticR(A, y, z_value(i), opts);
X(:,:, z_ind(i))=x; % store the solution x
C(z_ind(i), :)=c; % store the solution c
end
case 'mcLogisticR'
z_num=length(z); % the number of parameters
[z_value, z_ind]=sort(-z); % sort z in a decresing order
z_value=-z_value; % z_value in a decreasing order
n=size(A,2); % the dimensionality of the data
k=size(y,2); % the number of classes (tasks)
X=zeros(n,k,z_num); % set the size of output X
C=zeros(z_num, k); % set the size of output C
% run the code to compute the first solution
[x, c, funVal]=mcLogisticR(A, y, z_value(1), opts);
X(:,:,z_ind(1))=x; % store the solution x
C(z_ind(1), :)=c; % store the solution c
% set .init for warm start
opts.init=1; % using the defined ones
for i=2:z_num
opts.x0=x; % warm-start of x
opts.c0=c; % warm-start of c
% run the function mcLogisticR
[x, c, funVal]=mcLogisticR(A, y, z_value(i), opts);
X(:,:, z_ind(i))=x; % store the solution x
C(z_ind(i), :)=c; % store the solution c
end
case 'nnLogisticR'
z_num=length(z); % the number of parameters
[z_value, z_ind]=sort(-z); % sort z in a decresing order
z_value=-z_value; % z_value in a decreasing order
n=size(A,2); % the dimensionality of the data
X=zeros(n,z_num); % set the size of output X
C=zeros(1,z_num); % set the size of output C
% run the code to compute the first solution
[x, c, funVal]=nnLogisticR(A, y, z_value(1), opts);
X(:,z_ind(1))=x; % store the solution x
C(1,z_ind(1))=c; % store the solution c
% set .init for warm start
opts.init=1; % using the defined ones
for i=2:z_num
opts.x0=x; % warm-start of x
opts.c0=c; % warm-start of c
% run the function LogisticR
[x, c, funVal]=nnLogisticR(A, y, z_value(i), opts);
X(:,z_ind(i))=x; % store the solution x
C(1,z_ind(i))=c; % store the solution c
end
case 'nnLogisticC'
z_num=length(z); % the number of parameters
[z_value, z_ind]=sort(z); % sort z in an ascending order
n=size(A,2); % the dimensionality of the data
X=zeros(n,z_num); % set the size of output X
C=zeros(1,z_num); % set the size of output C
% run the code to compute the first solution
[x, c, funVal]=nnLogisticC(A, y, z_value(1), opts);
X(:,z_ind(1))=x; % store the solution x
C(1,z_ind(1))=c; % store the solution c
% set .init for warm start
opts.init=1; % using the defined ones
for i=2:z_num
opts.x0=x; % warm-start of x
opts.c0=c; % warm-start of c
% run the function LogisticC
[x, c, funVal]=nnLogisticC(A, y, z_value(i), opts);
X(:,z_ind(i))=x; % store the solution x
C(1,z_ind(i))=c; % store the solution c
end
case 'mtLogisticC'
z_num=length(z); % the number of parameters
[z_value, z_ind]=sort(z); % sort z in an ascending order
n=size(A,2); % the dimensionality of the data
k=length(opts.ind)-1; % the number of tasks
X=zeros(n,k,z_num); % set the size of output X
C=zeros(z_num, k); % set the size of output C
% run the code to compute the first solution
[x, c, funVal]=mtLogisticC(A, y, z_value(1), opts);
X(:,:,z_ind(1))=x; % store the solution x
C(z_ind(1), :)=c; % store the solution c
% set .init for warm start
opts.init=1; % using the defined ones
for i=2:z_num
opts.x0=x; % warm-start of x
opts.c0=c; % warm-start of c
% run the function mtLogisticC
[x, c, funVal]=mtLogisticC(A, y, z_value(i), opts);
X(:,:, z_ind(i))=x; % store the solution x
C(z_ind(i), :)=c; % store the solution c
end
case 'mcLogisticC'
z_num=length(z); % the number of parameters
[z_value, z_ind]=sort(z); % sort z in an ascending order
n=size(A,2); % the dimensionality of the data
k=size(y,2); % the number of classes (tasks)
X=zeros(n,k,z_num); % set the size of output X
C=zeros(z_num, k); % set the size of output C
% run the code to compute the first solution
[x, c, funVal]=mcLogisticC(A, y, z_value(1), opts);
X(:,:,z_ind(1))=x; % store the solution x
C(z_ind(1), :)=c; % store the solution c
% set .init for warm start
opts.init=1; % using the defined ones
for i=2:z_num
opts.x0=x; % warm-start of x
opts.c0=c; % warm-start of c
% run the function mcLogisticC
[x, c, funVal]=mcLogisticC(A, y, z_value(i), opts);
X(:,:, z_ind(i))=x; % store the solution x
C(z_ind(i), :)=c; % store the solution c
end
otherwise
fprintf('\n The function value specified in opts.fName is not supported!');
end