source: trunk/CrossPare/src/de/ugoe/cs/cpdp/dataprocessing/IProcessesingStrategy.java @ 10

Last change on this file since 10 was 2, checked in by sherbold, 10 years ago
  • initial commit
  • Property svn:mime-type set to text/plain
File size: 500 bytes
Line 
1package de.ugoe.cs.cpdp.dataprocessing;
2
3import weka.core.Instances;
4import 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 */
10public 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.