Changeset 73 for trunk/CrossPare/src/de


Ignore:
Timestamp:
05/04/16 11:33:48 (8 years ago)
Author:
sherbold
Message:
  • VCBSVM after Ryu et al., 2014
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/CrossPare/src/de/ugoe/cs/cpdp/wekaclassifier/VCBSVM.java

    r72 r73  
    9393        String lamdaString = Utils.getOption('L', options); 
    9494        String boostingIterString = Utils.getOption('B', options); 
    95         if (!boostingIterString.equals("")) { 
     95        if (!boostingIterString.isEmpty()) { 
    9696            boostingIterations = Integer.parseInt(boostingIterString); 
    9797        } 
    98         if (lamdaString.equals("")) { 
     98        if (!lamdaString.isEmpty()) { 
    9999            lamda = Double.parseDouble(lamdaString); 
    100100        } 
Note: See TracChangeset for help on using the changeset viewer.