Last change
on this file since 29 was
2,
checked in by sherbold, 10 years ago
|
|
-
Property svn:mime-type set to
text/plain
|
File size:
795 bytes
|
Line | |
---|
1 | package de.ugoe.cs.cpdp.eval;
|
---|
2 |
|
---|
3 | import java.util.List;
|
---|
4 |
|
---|
5 | import de.ugoe.cs.cpdp.IParameterizable;
|
---|
6 | import de.ugoe.cs.cpdp.training.ITrainer;
|
---|
7 |
|
---|
8 | import weka.core.Instances;
|
---|
9 |
|
---|
10 | /**
|
---|
11 | * Interface for evaluation strategies to evaluate the performance of classifiers.
|
---|
12 | * @author Steffen Herbold
|
---|
13 | */
|
---|
14 | public interface IEvaluationStrategy extends IParameterizable {
|
---|
15 |
|
---|
16 | /**
|
---|
17 | * Applies the evaluation strategy.
|
---|
18 | * @param testdata test data for the evaluation
|
---|
19 | * @param traindata training data used
|
---|
20 | * @param trainers list of training algorithms used to train the classifiers
|
---|
21 | * @param writeHeader if true, a header line for the results file is written (may not be applicable)
|
---|
22 | */
|
---|
23 | void apply(Instances testdata, Instances traindata, List<ITrainer> trainers, boolean writeHeader);
|
---|
24 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.