Ignore:
Timestamp:
06/28/16 12:01:39 (8 years ago)
Author:
sherbold
Message:
  • rather intrusive and large change to correctly evaluate AUCEC in case metrics are modified. The effort is now stored directly with a software version and it is the duty of the loader to specify the review effort for each instance. This required changes to the execution strategiey, data loading, and evaluation process.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/CrossPare/src/de/ugoe/cs/cpdp/execution/ClassifierCreationExperiment.java

    r86 r132  
    101101            Instances testdata = testVersion.getInstances(); 
    102102            Instances traindata = new Instances(testdata); 
     103            List<Double> efforts = testVersion.getEfforts(); 
    103104 
    104105            // Give the dataset a new name 
     
    168169                        config.getExperimentName() + ".csv"); 
    169170                } 
    170                 evaluator.apply(testdata, traindata, allTrainers, writeHeader, config.getResultStorages()); 
     171                evaluator.apply(testdata, traindata, allTrainers, efforts, writeHeader, config.getResultStorages()); 
    171172                writeHeader = false; 
    172173            } 
Note: See TracChangeset for help on using the changeset viewer.