001package javax.visrec.util; 002 003import javax.visrec.ml.data.DataSet; 004 005/** 006 * Every model should provide methods for training and testing. 007 * Not used anywhere at the moment. 008 * @author zoran 009 */ 010public interface Model { 011 void train(DataSet<?> trainingSet); 012 void test(DataSet<?> testSet); // evaluate 013}