public class CompiledNeuralNet
extends java.lang.Object
NeuralNetCompiler to create CompiledNeuralNets.| Modifier and Type | Field and Description |
|---|---|
org.ujmp.core.Matrix[] |
linkMatrices |
protected double[] |
neuronBias |
protected Function[] |
neuronFunctions |
org.ujmp.core.Matrix[] |
neuronMatrices |
protected int |
numberOfLayers |
| Constructor and Description |
|---|
CompiledNeuralNet() |
| Modifier and Type | Method and Description |
|---|---|
int |
getHiddenNeuronCount()
Returns the number of hidden neurons, that is, neurons which are neither
input nor output neurons.
|
int |
getInputNeuronCount() |
int |
getLinkCount() |
int |
getNeuronCount() |
double[] |
getOutput() |
int |
getOutputNeuronCount() |
void |
innervate() |
void |
setInput(double[] inputValues) |
public org.ujmp.core.Matrix[] neuronMatrices
public org.ujmp.core.Matrix[] linkMatrices
protected Function[] neuronFunctions
protected double[] neuronBias
protected int numberOfLayers
public int getHiddenNeuronCount()
public int getInputNeuronCount()
public int getLinkCount()
public int getNeuronCount()
public double[] getOutput()
public int getOutputNeuronCount()
public void innervate()
public void setInput(double[] inputValues)