|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjas.ai.ann.NodeLayer
public class NodeLayer
A node layer is a generic vector. It is a base class
for specific implementations of the input and
output layers for ANN architecture.
The node layer is equipped with bias capability, so
when the bias is enabled you can access the whole
vector (with the bias in position 0) using the get/setValue
methods and ignore the bias node using the get/setNode
methods.
If, for instance, the bias is enabled the following
instructions:
x = getValue(0);
y = getNode(0);
will return in variable x the first value of the vector
(vector[0]) and in variable y the second value of the
vector (vector[1]).
Title: JAS - Neural network package
Description: Java Agent-based Simulation library
Copyright: 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 | |
---|---|
NodeLayer(int hiddenNodes)
|
|
NodeLayer(int nodes,
boolean withBias)
Build a vector with a given number of nodes. |
Method Summary | |
---|---|
double[] |
getArray()
Return the internal vector. |
double[] |
getArrayCopy()
Return a copy of the internal vector. |
double |
getBias()
Return the value of bias. |
int |
getNodesNumber()
Return the number of nodes, excluding the bias one. |
double |
getNodeValue(int nodeIndex)
Return the value of the given node index. |
Jama.Matrix |
getRowVector()
Return a copy of the internal vector, using the jas.maths.Jama.Matrix format. |
Jama.Matrix |
getTrasposedVector()
Return a trasposed copy of the internal vector, using the jas.maths.Jama.Matrix format. |
double |
getValue(int arrayIndex)
Return the value of the given index of the vector. |
int |
getVectorLength()
Return the number of nodes, including the bias one. |
boolean |
hasBias()
Check if bias has been enabled. |
void |
setBias(double value)
Set the given value for the bias. |
void |
setNodeValue(int nodeIndex,
double value)
Set the given value for the given node index. |
void |
setValue(int arrayIndex,
double value)
Set the given value for the given index of the vector. |
void |
setVector(double[] values)
Set node values the each cell of the vector. |
java.lang.String |
toString()
|
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public NodeLayer(int hiddenNodes)
hiddenNodes
- public NodeLayer(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].Method Detail |
---|
public double[] getArray()
public double[] getArrayCopy()
public double getBias()
java.lang.UnsupportedOperationException
- If bias has been not enabled during construction.public int getNodesNumber()
public double getNodeValue(int nodeIndex)
nodeIndex
- The 0 based index for the node. WARNING The index bounds are not checked!
public Jama.Matrix getRowVector()
public Jama.Matrix getTrasposedVector()
public double getValue(int arrayIndex)
arrayIndex
- The 0 based index for the vector. WARNING The index bounds are not checked!
public int getVectorLength()
public boolean hasBias()
public void setBias(double value)
value
- The new bias value.
java.lang.UnsupportedOperationException
- If bias has been not enabled during construction.public void setNodeValue(int nodeIndex, double value)
nodeIndex
- The 0 based index for the node. WARNING The index bounds are not checked!value
- The new double value for the given vector cell.public void setValue(int arrayIndex, double value)
arrayIndex
- The 0 based index for the vector. WARNING The index bounds are not checked!value
- The new double value for the given vector cell.public void setVector(double[] values)
values
- A double[] array containig node values.public java.lang.String toString()
toString
in class java.lang.Object
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |