|
Last change
on this file since 14 was
2,
checked in by sherbold, 12 years ago
|
|
|
-
Property svn:mime-type set to
text/plain
|
|
File size:
525 bytes
|
| Line | |
|---|
| 1 | package de.ugoe.cs.cpdp.dataselection;
|
|---|
| 2 |
|
|---|
| 3 | import de.ugoe.cs.cpdp.IParameterizable;
|
|---|
| 4 |
|
|---|
| 5 | import weka.core.Instances;
|
|---|
| 6 |
|
|---|
| 7 | /**
|
|---|
| 8 | * Interface for pointwise data selection strategies.
|
|---|
| 9 | * @author Steffen Herbold
|
|---|
| 10 | */
|
|---|
| 11 | public 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.