- 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/ISetWiseTrainingStrategy.java
r86 r135 19 19 import weka.core.Instances; 20 20 21 // Bagging Strategy: separate models for each training data set 21 /** 22 * <p> 23 * Training strategy for training with one data set per input product. 24 * </p> 25 * 26 * @author Steffen Herbold 27 */ 22 28 public interface ISetWiseTrainingStrategy extends ITrainer { 23 29 30 /** 31 * <p> 32 * Applies the training strategy. 33 * </p> 34 * 35 * @param traindataSet 36 * the training data per product 37 */ 24 38 void apply(SetUniqueList<Instances> traindataSet); 25 39 40 /** 41 * <p> 42 * returns the name of the training strategy 43 * </p> 44 * 45 * @return the name 46 */ 26 47 String getName(); 27 48 }
Note: See TracChangeset
for help on using the changeset viewer.