?? architecture.java
字號(hào):
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);}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -