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
|
Rev | Line | |
---|
[135] | 1 |
|
---|
[66] | 2 | package de.ugoe.cs.cpdp.wekaclassifier;
|
---|
| 3 |
|
---|
| 4 | import weka.core.Instances;
|
---|
| 5 |
|
---|
[135] | 6 | /**
|
---|
| 7 | * <p>
|
---|
| 8 | * Interface for test data aware classifier implementations
|
---|
| 9 | * </p>
|
---|
| 10 | *
|
---|
| 11 | * @author Steffen Herbold
|
---|
| 12 | */
|
---|
[66] | 13 | public interface ITestAwareClassifier {
|
---|
[135] | 14 |
|
---|
| 15 | /**
|
---|
| 16 | * <p>
|
---|
| 17 | * passes the test data to the classifier
|
---|
| 18 | * </p>
|
---|
| 19 | *
|
---|
| 20 | * @param testdata
|
---|
| 21 | * the test data
|
---|
| 22 | */
|
---|
[66] | 23 | public void setTestdata(Instances testdata);
|
---|
| 24 |
|
---|
| 25 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.