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