source: trunk/CrossPare/src/de/ugoe/cs/cpdp/training/ITestAwareTrainingStrategy.java @ 65

Last change on this file since 65 was 65, checked in by sherbold, 9 years ago
  • added new interface ITestAwareTraining strategy to the framework to support trainers with knowledge of the test data. The implementation of such trainers must take care to not accidentally take the classification of the test data into account.
  • Property svn:mime-type set to text/plain
File size: 224 bytes
Line 
1package de.ugoe.cs.cpdp.training;
2
3import weka.core.Instances;
4
5public interface ITestAwareTrainingStrategy extends ITrainer {
6   
7    void apply(Instances testdata, Instances traindata);
8
9    String getName();
10}
Note: See TracBrowser for help on using the repository browser.