⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 inputfunction.java

📁 神经网络源代码,实现了一个BP神经网络,可以完成基于BP的神经网络算法.
💻 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 + -