Codebase list libocas / 4c843564-0c48-4a48-90ee-9412a7fc6e19/main svmocas_light.m
4c843564-0c48-4a48-90ee-9412a7fc6e19/main

Tree @4c843564-0c48-4a48-90ee-9412a7fc6e19/main (Download .tar.gz)

svmocas_light.m @4c843564-0c48-4a48-90ee-9412a7fc6e19/mainraw · history · blame

% SVMOCAS OCAS solver for training linear SVM classifier from SVM^light file.
%
% Synopsis:
%  [W,W0,stat] = svmocas(dataFile,X0,C,Method,TolRel,TolAbs,QPBound,BufSize,nExamples,MaxTime); 
%
% Desription:
%  This function trains linear SVM classifier by solving
%
%      W,W0 = argmin 0.5*(w'*w+w0^2) + C*sum max( 0, 1-y(i)*(w'*X(:,i)+w0*X0) )
%              w,w0                  i=1:nExamples
%
%  The function loads examples from dataFile in SVM^light format.
%
% Reference:
%  V. Franc, S. Sonnenburg. Optimized Cutting Plane Algorithm for Large-scale Risk
%  Minimization. Journal of Machine Learning Research. 2009
%    http://jmlr.csail.mit.edu/papers/volume10/franc09a/franc09a.pdf
%
% Input:
%   dataFile [string] Training examples stored in SVM^light format.
%   X0 [1x1] constant coordinate (implicitly) added to all examples;
%     this allows training biased decision rule.
%   y [nExamples x 1] labels (+1/-1).
%   C [1x1]  or [nExamples x 1] C [1x1] is a regularization constant common for all examples;
%     if C is a vector [nExamples x 1] then each example has its own (possibly different) 
%     regularization constant.
%   Method [1x1] 0..cutting plane; 1..OCAS  (default 1)
%   TolRel [1x1] halts if Q_P-Q_D <= abs(Q_P)*TolRel  (default 0.01)
%   TolAbs [1x1] halts if Q_P-Q_D <= TolAbs  (default 0)
%   QPValue [1x1] halts if Q_P <= QPBpound  (default 0)
%   BufSize [1x1] Initial size of active constrains buffer (default 2000)
%   nExaples [1x1] Number of examples used for training; must be >0 and <= size(X,2).
%     If nExamples = inf then nExamples is set to size(X,2).
%   MaxTime [1x1] halts if time used by solver (data loading time is not counted) exceeds
%    MaxTime given in seconds. Use MaxTime=inf (default) to switch off this stopping condition. 
%
% Output:
%   W [nDim x 1] Paramater vectors of decision rule sign(W'*X+W0)
%   W0 [1x1] Bias term of the decision rule.
%   stat [struct] Optimizer statistics (field names are self-explaining).
%
% Example:
%  % training   
%  libocasPath = fileparts(which('svmocas'));
%  svmC = 1;
%  [W,W0,stat] = svmocas_light([libocasPath '/data/riply_trn.light'],1,svmC);
%
%  % classification 
%  [score,trueLabels] = linclassif_light([libocasPath '/data/riply_tst.light'],W,W0);
%  ypred = sign(score);
%  sum(ypred~=trueLabels)/length(trueLabels)
%

%
% Copyright (C) 2008, 2009, 2012 Vojtech Franc, xfrancv@cmp.felk.cvut.cz
%               Soeren Sonnenburg, soeren.sonnenburg@first.fraunhofer.de
%
% This program is free software; you can redistribute it and/or
% modify it under the terms of the GNU General Public 
% License as published by the Free Software Foundation;