The XCaliber Artificial Neural Network (XANN) is comprised of Java objects.
XApplication | Application Object |
XActivation | Node Activation |
XAttribute | ANN Node Attributes |
XBias | Bias Object |
XConduit | Network Interconnect |
XDataField | Data Field Container |
XNetwork | ANN Network Object |
XNode | ANN Node Object |
XResultField | Result Field Container |
XRoute | ANN Routing Object |
XWeight | ANN Weighting Object |
Usage Examples:
xAppl = new XApplication();
xNetwork = new XNetwork(1000);
xInputNode = new XNodeInput("xNodeInput1");
xWeight = new XWeight();
xWeight.setParms("Weight1",0.0,1.0,20.0,1.0,1.0);