- Timestamp:
- 07/18/16 12:26:03 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/CrossPare/src/de/ugoe/cs/cpdp/training/ITestAwareTrainingStrategy.java
r65 r135 3 3 import weka.core.Instances; 4 4 5 /** 6 * <p> 7 * Training strategy for training with access to the target data and the training data as a single data set. 8 * </p> 9 * 10 * @author Steffen Herbold 11 */ 5 12 public interface ITestAwareTrainingStrategy extends ITrainer { 6 13 14 /** 15 * <p> 16 * Applies the training strategy. 17 * </p> 18 * 19 * @param traindata 20 * the training data for all products 21 * @param testdata 22 * the test data from the target product 23 */ 7 24 void apply(Instances testdata, Instances traindata); 8 25 26 /** 27 * <p> 28 * returns the name of the training strategy 29 * </p> 30 * 31 * @return the name 32 */ 9 33 String getName(); 10 34 }
Note: See TracChangeset
for help on using the changeset viewer.