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