001    /*
002     * Created on Apr 14, 2005
003     *
004     */
005    package aima.learning.framework;
006    
007    /**
008     * @author Ravi Mohan
009     * 
010     */
011    
012    public interface Learner {
013            void train(DataSet ds);
014    
015            String predict(Example e);
016    
017            int[] test(DataSet ds);
018    }