1 2 3 4 5 6 7 8 9
package org.rssin.neurons; /** * Created by Jos on 14-5-2015. */ interface PredictionInterface { public double getOutput(); public void learn(double expectedOutput); }