📄 inputfunction.java
字号:
package net.openai.ai.nn.input;import net.openai.ai.nn.network.*;abstract public class InputFunction { // this method will get all the neurons connections and // calculate the input for this neuron. abstract public void calculateInput(Neuron neuron); protected void db(String s) { if(Network.getDebug()) System.err.println("InputFunction: " + s); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -