|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjas.ai.ann.NodeLayer
jas.ai.ann.InputNodeLayer
public class InputNodeLayer
The input node layer is used to store values of the input layer of the neural network. It is able to manage the scaling of the values, according to the vectors of minimun and maximum values. The layer is equipped with a monitor, which checks that stored values are within the allowed range. When a particular node goes out of bounds the method isOutOfScale() returns true.
Title: JAS - Neural network package
Description: Java Agent-based Simulation library
Copyright (C) 2002-3 Michele Sonnessa
This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
Constructor Summary | |
---|---|
InputNodeLayer(int nodes,
boolean withBias)
Build an input node layer with a given number of nodes. |
|
InputNodeLayer(int nodes,
boolean withBias,
double[] minValues,
double[] maxValues)
Build an input node layer with a given number of nodes and given ranges for each node values. |
Method Summary | |
---|---|
double |
getMaxValue(int nodeIndex)
Return the upper bound for the given node index. |
double[] |
getMaxVector()
Return a vector of maximum value for the input nodes. |
Jama.Matrix |
getMinMaxMatrix()
Return a Jama.Matrix of minimum and maximum values for the input nodes. |
double |
getMinValue(int nodeIndex)
Return the lower bound for the given node index. |
double[] |
getMinVector()
Return a vector of minimum value for the input nodes. |
double |
getUnscaledNodeValue(int nodeIndex)
Return the current value for the given node index, using the orginal scale. |
double[] |
getUnscaledVector()
Return the current value for each node of the layer, using the orginal scale. |
boolean |
isOutOfScale()
Report if setUnscaledNodeValue method recevied values out of bounds. |
void |
resetOutOfScale()
Reset the out of scale monitor. |
void |
setMaxValue(int nodeIndex,
double value)
Set the new upper bound for the given node index. |
void |
setMinMaxValue(int nodeIndex,
double minValue,
double maxValue)
Set the new lower and upper bounds for the given node index. |
void |
setMinValue(int nodeIndex,
double value)
Set the new lower bound for the given node index. |
void |
setUnscaledNodeValue(int nodeIndex,
double value)
Set the new value for the given node index. |
void |
setUnscaledVector(double[] values)
Set node values in the original scale for each cell of the vector. |
Methods inherited from class jas.ai.ann.NodeLayer |
---|
getArray, getArrayCopy, getBias, getNodesNumber, getNodeValue, getRowVector, getTrasposedVector, getValue, getVectorLength, hasBias, setBias, setNodeValue, setValue, setVector, toString |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public InputNodeLayer(int nodes, boolean withBias)
nodes
- The number of nodes in the layers.withBias
- If true the position 0 of the vector
will contain the bias and the total number of cells
in the vector will be [nodes + 1].public InputNodeLayer(int nodes, boolean withBias, double[] minValues, double[] maxValues)
nodes
- The number of nodes in the layers.withBias
- If true the position 0 of the vector
will contain the bias and the total number of cells
in the vector will be [nodes + 1].minValues
- A vector of [nodes] values containing the lower bound for each node.maxValues
- A vector of [nodes] values containing the upper bound for each node.Method Detail |
---|
public double getMaxValue(int nodeIndex)
nodeIndex
- The index of the node. WARNING: The index bounds are not checked!
public double[] getMaxVector()
public Jama.Matrix getMinMaxMatrix()
public double getMinValue(int nodeIndex)
nodeIndex
- The index of the node. WARNING: The index bounds are not checked!
public double[] getMinVector()
public double getUnscaledNodeValue(int nodeIndex)
The
- index of the node. WARNING: The index bounds are not checked!
public double[] getUnscaledVector()
public boolean isOutOfScale()
public void resetOutOfScale()
public void setMaxValue(int nodeIndex, double value)
nodeIndex
- The index of the node. WARNING: The index bounds are not checked!value
- The new bound value.public void setMinMaxValue(int nodeIndex, double minValue, double maxValue)
nodeIndex
- The index of the node. WARNING: The index bounds are not checked!minValue
- The new lower bound value.maxValue
- The new upper bound value.public void setMinValue(int nodeIndex, double value)
nodeIndex
- The index of the node. WARNING: The index bounds are not checked!value
- The new bound value.public void setUnscaledNodeValue(int nodeIndex, double value)
The
- index of the node. WARNING: The index bounds are not checked!public void setUnscaledVector(double[] values)
values
- A double[] array containig unscaled node values.
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |