source: trunk/CrossPare/src/de/ugoe/cs/cpdp/dataprocessing/ISetWiseProcessingStrategy.java @ 17

Last change on this file since 17 was 2, checked in by sherbold, 10 years ago
  • initial commit
  • Property svn:mime-type set to text/plain
File size: 600 bytes
Line 
1package de.ugoe.cs.cpdp.dataprocessing;
2
3import org.apache.commons.collections4.list.SetUniqueList;
4
5import de.ugoe.cs.cpdp.IParameterizable;
6
7import 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 */
13public 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.