architecture.java
来自「神经网络源代码,实现了一个BP神经网络,可以完成基于BP的神经网络算法.」· Java 代码 · 共 29 行
JAVA
29 行
package net.openai.ai.nn.architecture;import net.openai.ai.nn.network.*;/** * This class defines how the neural network will be constructed * or connected. How each neuron will be connected to other neurons * in the network. * */abstract public class Architecture { /** * Connects the network passed in to this method. * @param network The network to be connected. * @return Network The fully connected network. */ abstract public void connectNetwork(Network network); /** * Iterates the network according to the rules set by the architecture. * @param network The network to be iterated. */ abstract public void iterateNetwork(Network network);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?