source: trunk/CrossPare/src/de/ugoe/cs/cpdp/dataselection/IPointWiseDataselectionStrategy.java @ 29

Last change on this file since 29 was 2, checked in by sherbold, 10 years ago
  • initial commit
  • Property svn:mime-type set to text/plain
File size: 525 bytes
Line 
1package de.ugoe.cs.cpdp.dataselection;
2
3import de.ugoe.cs.cpdp.IParameterizable;
4
5import weka.core.Instances;
6
7/**
8 * Interface for pointwise data selection strategies.
9 * @author Steffen Herbold
10 */
11public interface IPointWiseDataselectionStrategy extends IParameterizable {
12
13        /**
14         * Applies the data selection strategy.
15         * @param testdata test data
16         * @param traindata candidate training data
17         * @return the selected training data
18         */
19        Instances apply(Instances testdata, Instances traindata);
20}
Note: See TracBrowser for help on using the repository browser.