- 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/IWekaCompatibleTrainer.java
r86 r135 17 17 import weka.classifiers.Classifier; 18 18 19 /** 20 * <p> 21 * Common interface for all training strategies that internally use the {@link Classifier} from WEKA. 22 * </p> 23 * 24 * @author Steffen Herbold 25 */ 19 26 public interface IWekaCompatibleTrainer extends ITrainer { 20 27 28 /** 29 * <p> 30 * returns the WEKA classifier 31 * </p> 32 * 33 * @return the classifier 34 */ 21 35 Classifier getClassifier(); 22 36 37 /** 38 * <p> 39 * returns the name of the training strategy 40 * </p> 41 * 42 * @return the name 43 */ 23 44 String getName(); 24 45 }
Note: See TracChangeset
for help on using the changeset viewer.