source: trunk/CrossPare/src/de/ugoe/cs/cpdp/wekaclassifier/ITestAwareClassifier.java

Last change on this file was 135, checked in by sherbold, 8 years ago
  • code documentation and formatting
  • Property svn:mime-type set to text/plain
File size: 450 bytes
Line 
1
2package de.ugoe.cs.cpdp.wekaclassifier;
3
4import weka.core.Instances;
5
6/**
7 * <p>
8 * Interface for test data aware classifier implementations
9 * </p>
10 *
11 * @author Steffen Herbold
12 */
13public interface ITestAwareClassifier {
14
15    /**
16     * <p>
17     * passes the test data to the classifier
18     * </p>
19     *
20     * @param testdata
21     *            the test data
22     */
23    public void setTestdata(Instances testdata);
24
25}
Note: See TracBrowser for help on using the repository browser.