|
|||||||||
| Home >> All >> AI >> [ NeuralNetworks overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
AI.NeuralNetworks
Class FeedForwardLayer

java.lang.ObjectAI.NeuralNetworks.FeedForwardLayer
- Direct Known Subclasses:
- FeedForwardInputLayer, FeedForwardWeightedLayer
- public abstract class FeedForwardLayer
- extends java.lang.Object
A multilayer feed forewar nerual network is composed by layers those layers are subclases of this class.
| Field Summary | |
protected float[] |
activation
|
| Constructor Summary | |
FeedForwardLayer()
|
|
| Method Summary | |
float[] |
getActivation()
Returns this layers activation |
int |
size()
Returns the size of the layer including the bias |
java.lang.String |
toString()
returns a String representation of the layer |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Field Detail |
activation
protected float[] activation
| Constructor Detail |
FeedForwardLayer
public FeedForwardLayer()
| Method Detail |
getActivation
public float[] getActivation()
- Returns this layers activation
size
public int size()
- Returns the size of the layer including the bias
toString
public java.lang.String toString()
- returns a String representation of the layer
|
|||||||||
| Home >> All >> AI >> [ NeuralNetworks overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
JAVADOC
AI.NeuralNetworks.FeedForwardLayer