📄 architecture.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -