Last change
on this file since 21 was
2,
checked in by sherbold, 10 years ago
|
|
-
Property svn:mime-type set to
text/plain
|
File size:
604 bytes
|
Line | |
---|
1 | package de.ugoe.cs.cpdp.dataselection;
|
---|
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 | * Interface for setwise data selection strategies.
|
---|
11 | * @author Steffen Herbold
|
---|
12 | */
|
---|
13 | public interface ISetWiseDataselectionStrategy extends IParameterizable {
|
---|
14 |
|
---|
15 | /**
|
---|
16 | * Applies a setwise data selection strategy.
|
---|
17 | * @param testdata test data for which the training data is selected
|
---|
18 | * @param traindataSet candidate training data
|
---|
19 | */
|
---|
20 | void apply(Instances testdata, SetUniqueList<Instances> traindataSet);
|
---|
21 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.