blob: ff46992c3834fbe89e612236403fbd11617b207a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
package org.rssin.neurons;
/**
* @author Jos.
*/
interface PredictionInterface {
double getOutput();
void learn(double expectedOutput);
double[] getInputs();
}
|