- 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/ITrainingStrategy.java
r86 r135 17 17 import weka.core.Instances; 18 18 19 /** 20 * <p> 21 * Training strategy for training with the training data as a single data set. 22 * </p> 23 * 24 * @author Steffen Herbold 25 */ 19 26 public interface ITrainingStrategy extends ITrainer { 20 27 28 /** 29 * <p> 30 * Applies the training strategy. 31 * </p> 32 * 33 * @param traindata 34 * the training data for all target products 35 */ 21 36 void apply(Instances traindata); 22 37 38 /** 39 * <p> 40 * returns the name of the training strategy 41 * </p> 42 * 43 * @return the name 44 */ 23 45 String getName(); 24 46 }
Note: See TracChangeset
for help on using the changeset viewer.