Changeset 73
- Timestamp:
- 05/04/16 11:33:48 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/CrossPare/src/de/ugoe/cs/cpdp/wekaclassifier/VCBSVM.java
r72 r73 93 93 String lamdaString = Utils.getOption('L', options); 94 94 String boostingIterString = Utils.getOption('B', options); 95 if (!boostingIterString. equals("")) {95 if (!boostingIterString.isEmpty()) { 96 96 boostingIterations = Integer.parseInt(boostingIterString); 97 97 } 98 if ( lamdaString.equals("")) {98 if (!lamdaString.isEmpty()) { 99 99 lamda = Double.parseDouble(lamdaString); 100 100 }
Note: See TracChangeset
for help on using the changeset viewer.