public static interface NetCompiler.CompiledNet
| Modifier and Type | Method and Description |
|---|---|
NetCompiler.CompiledNet |
compile(NeuralNet net)
Compile the given NeuralNet to this CompiledNet instance.
|
double[] |
getOutput(double[] outputs)
Extract the output pattern from the network.
|
void |
innervate()
Innervate the network.
|
void |
setInput(double[] values)
Load the input pattern into the network.
|
void setInput(double[] values)
void innervate()
double[] getOutput(double[] outputs)
outputs - Array to put the outputs into.
If too small or null, we allocate a new double array for the values.NetCompiler.CompiledNet compile(NeuralNet net) throws NetCompiler.CompileException
NetCompiler.CompileException