source: trunk/CrossPare/src/de/ugoe/cs/cpdp/training/ITrainingStrategy.java @ 23

Last change on this file since 23 was 6, checked in by sherbold, 10 years ago
  • improved Javadocs and exception handling
  • added getName() to ITrainingStrategy
  • Property svn:mime-type set to text/plain
File size: 187 bytes
Line 
1package de.ugoe.cs.cpdp.training;
2
3import weka.core.Instances;
4
5public interface ITrainingStrategy extends ITrainer {
6       
7        void apply(Instances traindata);
8       
9        String getName();
10}
Note: See TracBrowser for help on using the repository browser.