Last change
on this file since 66 was
45,
checked in by atrautsch, 9 years ago
|
metric matching configurable
|
File size:
379 bytes
|
Line | |
---|
1 | package de.ugoe.cs.cpdp.training; |
---|
2 | |
---|
3 | import org.apache.commons.collections4.list.SetUniqueList; |
---|
4 | import weka.core.Instances; |
---|
5 | |
---|
6 | public interface ISetWiseTestdataAwareTrainingStrategy extends ITrainer { |
---|
7 | |
---|
8 | void apply(SetUniqueList<Instances> traindataSet, Instances testdata); |
---|
9 | |
---|
10 | String getName(); |
---|
11 | |
---|
12 | void setMethod(String method); |
---|
13 | void setThreshold(String threshold); |
---|
14 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.