forked from akyrola/shotgun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshotgun_lasso.m
53 lines (51 loc) · 1.83 KB
/
shotgun_lasso.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
%
% Copyright [2011] [Aapo Kyrola, Joseph Bradley, Danny Bickson, Carlos Guestrin / Carnegie Mellon University]
%
% Licensed under the Apache License, Version 2.0 (the "License");
% you may not use this file except in compliance with the License.
% You may obtain a copy of the License at
%
% http://www.apache.org/licenses/LICENSE-2.0
%
% Unless required by applicable law or agreed to in writing, software
% distributed under the License is distributed on an "AS IS" BASIS,
% WITHOUT WARRANTIES OR CONDITIONS OF Alogregprob->ny KIND, either express or implied.
% See the License for the specific language governing permissions and
% limitations under the License.
%
%
% Implementation of Lasso Shotgun-algorithm from paper:
% Joseph K. Bradley, Aapo Kyrola, Danny Bickson, and Carlos Guestrin (2011).
% "Parallel Coordinate Descent for L1-Regularized Loss Minimization."
% International Conference on Machine Learning (ICML 2011).
%
% Solves Lasso \arg \min_x |Ax-y|^2+lambda*|x|_1
% input:
% matrix A (design matrix)
% y (observation vector)
% lambda (regularization parameter)
% nthreads (how many threads to use, 0 for automatic)
% threshold (convergence threshold)
% regpath (regularization path lenth - used only in lasso)
% maxiter (maximal number of iterations)
% verbose (additional information including cost calculation per iteration)
% output:
% x weight-vector
function [x] = shotgun_lasso(A,y,lambda, nthreads,threshold,regpath,maxiter,verbose)
if (~exist('threshold','var'))
threshold = 1e-5
end
if (~exist('regpath','var'))
regpath = 0
end
if (~exist('maxiter','var'))
maxiter = 100;
end
if ~exist('nthreads','var')
nthreads = 0
end
if ~exist('verbose','var')
verbose = 0
end
x = mex_shotgun(A,y,lambda,1,threshold,regpath,maxiter, nthreads,verbose);
end