Last change
on this file since 12 was
2,
checked in by sherbold, 10 years ago
|
|
-
Property svn:mime-type set to
text/plain
|
File size:
339 bytes
|
Line | |
---|
1 | package de.ugoe.cs.cpdp.training;
|
---|
2 |
|
---|
3 | import org.apache.commons.collections4.list.SetUniqueList;
|
---|
4 |
|
---|
5 | import weka.core.Instances;
|
---|
6 |
|
---|
7 | // Bagging Strategy: separate models for each training data set
|
---|
8 | public interface ISetWiseTrainingStrategy extends ITrainer {
|
---|
9 |
|
---|
10 | void apply(SetUniqueList<Instances> traindataSet);
|
---|
11 |
|
---|
12 | String getName();
|
---|
13 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.