Last change
on this file since 9 was
2,
checked in by sherbold, 10 years ago
|
|
-
Property svn:mime-type set to
text/plain
|
File size:
500 bytes
|
Line | |
---|
1 | package de.ugoe.cs.cpdp.dataprocessing;
|
---|
2 |
|
---|
3 | import weka.core.Instances;
|
---|
4 | import de.ugoe.cs.cpdp.IParameterizable;
|
---|
5 |
|
---|
6 | /**
|
---|
7 | * A data processing strategy that is applied to the test data and a single set of training data.
|
---|
8 | * @author Steffen Herbold
|
---|
9 | */
|
---|
10 | public interface IProcessesingStrategy extends IParameterizable {
|
---|
11 |
|
---|
12 | /**
|
---|
13 | * Applies the processing strategy.
|
---|
14 | * @param testdata test data
|
---|
15 | * @param traindata training data
|
---|
16 | */
|
---|
17 | void apply(Instances testdata, Instances traindata);
|
---|
18 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.