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