1 /*** 2 * 3 */ 4 package yawn.util; 5 6 import yawn.nn.NeuralNetwork; 7 8 /*** 9 * This is yawn.util.StatisticsFacility, part of the yawn project. 10 * 11 * <p>$Id: StatisticsFacility.java,v 1.3 2005/04/20 18:55:19 supermarti Exp $</p> 12 * 13 * @author Luis Martí (luis dot marti at uc3m dot es) 14 * @version $Revision: 1.3 $ 15 */ 16 public interface StatisticsFacility { 17 18 public double computePredictionError(NeuralNetwork network, InputOutputPattern[] set); 19 20 }