- Timestamp:
- 07/18/16 12:26:03 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/CrossPare/src/de/ugoe/cs/cpdp/wekaclassifier/ITestAwareClassifier.java
r66 r135 1 1 2 package de.ugoe.cs.cpdp.wekaclassifier; 2 3 3 4 import weka.core.Instances; 4 5 6 /** 7 * <p> 8 * Interface for test data aware classifier implementations 9 * </p> 10 * 11 * @author Steffen Herbold 12 */ 5 13 public interface ITestAwareClassifier { 6 14 15 /** 16 * <p> 17 * passes the test data to the classifier 18 * </p> 19 * 20 * @param testdata 21 * the test data 22 */ 7 23 public void setTestdata(Instances testdata); 8 24
Note: See TracChangeset
for help on using the changeset viewer.