readme.txt
来自「这是一个神经网络的开发工具」· 文本 代码 · 共 38 行
TXT
38 行
XOR.java--------This example shows how to use Joone core engine writing Java code.Read the Developer Guide to learn in details how does work its source code.To runnit:java -cp joone-engine.jar org.joone.samples.xor.XOR <inputFile> <errorFile>where <inputFile> is the input file name (with its complete path) that contains the XOR truth table (xor.txt) <errorFile> is the output file name (with its complete path) that will contain the error values of the netXORMemory.java--------------Sample class to demostrate the use of the MemoryInputSynapse classto train the net with the patterns contained in a 2D array of doubles.To runnit:java -cp joone-engine.jar org.joone.samples.xor.XORMemoryEmbeddedXOR.java----------------This example shows the use of a neural network embedded in anotherapplication that gets the output from the MemoryOutputSynapse classgiving to the net a set of predefined input patterns using the MemoryInputSynapse class.To runnit:java -cp joone-engine.jar org.joone.samples.xor.EmbeddedXOR.java xor.snetwhere xor.snet is a serialized XOR neural network (i.e. obtained from theGUI editor with File->Export menu item)ImmediateEmbeddedXOR.java-------------------------This example shows the use of a neural network embedded in anotherapplication that gets the output from the MemoryOutputSynapse classgiving to the net only one input patterns each time, using the DirectSynapse class.To runnit:java -cp joone-engine.jar org.joone.samples.xor.ImmediateEmbeddedXOR.java xor.snetwhere xor.snet is a serialized XOR neural network (i.e. obtained from theGUI editor with File->Export menu item)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?