~ubuntu-branches/ubuntu/intrepid/libsvm/intrepid

« back to all changes in this revision

Viewing changes to svm.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Rudi Cilibrasi
  • Date: 2007-12-28 22:15:04 UTC
  • mfrom: (1.1.2 upstream) (4.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20071228221504-gmdkl9c30b4axiyf
Tags: 2.85.0-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1734
1734
        
1735
1735
        int max_iter=100;       // Maximal number of iterations
1736
1736
        double min_step=1e-10;  // Minimal step taken in line search
1737
 
        double sigma=1e-3;      // For numerically strict PD of Hessian
 
1737
        double sigma=1e-12;     // For numerically strict PD of Hessian
1738
1738
        double eps=1e-5;
1739
1739
        double hiTarget=(prior1+1.0)/(prior1+2.0);
1740
1740
        double loTarget=1/(prior0+2.0);