package de.ugoe.cs.cpdp.training; import weka.core.Instances; /** *
* Training strategy for training with access to the target data and the training data as a single data set. *
* * @author Steffen Herbold */ public interface ITestAwareTrainingStrategy extends ITrainer { /** ** Applies the training strategy. *
* * @param traindata * the training data for all products * @param testdata * the test data from the target product */ void apply(Instances testdata, Instances traindata); /** ** returns the name of the training strategy *
* * @return the name */ String getName(); }