Last change
on this file since 135 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 |
|
---|
2 | package de.ugoe.cs.cpdp.wekaclassifier;
|
---|
3 |
|
---|
4 | import weka.core.Instances;
|
---|
5 |
|
---|
6 | /**
|
---|
7 | * <p>
|
---|
8 | * Interface for test data aware classifier implementations
|
---|
9 | * </p>
|
---|
10 | *
|
---|
11 | * @author Steffen Herbold
|
---|
12 | */
|
---|
13 | public 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.