Changeset 6 for trunk/CrossPare
- Timestamp:
- 08/06/14 11:12:25 (10 years ago)
- Location:
- trunk/CrossPare/src/de/ugoe/cs/cpdp
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/CrossPare/src/de/ugoe/cs/cpdp/Experiment.java
r2 r6 121 121 } 122 122 for( ISetWiseTrainingStrategy setwiseTrainer : config.getSetWiseTrainers() ) { 123 Console.traceln(Level.FINE, String.format("[%s] [%02d/%02d] %s: applying setwise trainer %s", config.getExperimentName(), versionCount, testVersionCount, testVersion.getVersion(), setwiseTrainer.get Class().getName()));123 Console.traceln(Level.FINE, String.format("[%s] [%02d/%02d] %s: applying setwise trainer %s", config.getExperimentName(), versionCount, testVersionCount, testVersion.getVersion(), setwiseTrainer.getName())); 124 124 setwiseTrainer.apply(traindataSet); 125 125 } … … 138 138 } 139 139 for( ITrainingStrategy trainer : config.getTrainers() ) { 140 Console.traceln(Level.FINE, String.format("[%s] [%02d/%02d] %s: applying trainer %s", config.getExperimentName(), versionCount, testVersionCount, testVersion.getVersion(), trainer.get Class().getName()));140 Console.traceln(Level.FINE, String.format("[%s] [%02d/%02d] %s: applying trainer %s", config.getExperimentName(), versionCount, testVersionCount, testVersion.getVersion(), trainer.getName())); 141 141 trainer.apply(traindata); 142 142 } -
trunk/CrossPare/src/de/ugoe/cs/cpdp/eval/AbstractWekaEvaluation.java
r5 r6 21 21 * <ul> 22 22 * <li>Success with recall>0.7, precision>0.5</li> 23 * <li>Success with recall>0.7, precision>0. 5</li>23 * <li>Success with recall>0.7, precision>0.7</li> 24 24 * <li>Success with gscore>0.75</li> 25 25 * <li>Success with gscore>0.6</li> … … 37 37 * <li>true negatives</li> 38 38 * <li>false negatives</li> 39 * <li>training error</li> 40 * <li>training recall</li> 41 * <li>training precision</li> 42 * <li>training success with recall>0.7 and precision>0.5 39 43 * </ul> 40 44 * @author Steffen Herbold -
trunk/CrossPare/src/de/ugoe/cs/cpdp/loader/ARFFLoader.java
r4 r6 29 29 reader.close(); 30 30 } catch (IOException e) { 31 // TODO Auto-generated catch block 32 throw new RuntimeException(e); 31 throw new RuntimeException("error reading file: " + file.getName(), e); 33 32 } 34 33 -
trunk/CrossPare/src/de/ugoe/cs/cpdp/training/ITrainingStrategy.java
r2 r6 6 6 7 7 void apply(Instances traindata); 8 9 String getName(); 8 10 }
Note: See TracChangeset
for help on using the changeset viewer.