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

📄 gabneuron.h

📁 几种神经网络的源程序
💻 H
字号:
#ifndef _GABNEURON_H#define _GABNEURON_H#include "ParametrizedNeuron.h"#include "defines.h"namespace annie{/** * Neuron for Gain Adaptive BP * * status: not finished. But I don't want to remove it because it needs just a little bit work if someone needs it. It can speedup the BP and help with overlearning * * This neuron modifies learning parameter <code>lambda</code> given equation: * 	 * 	l_tmp = labda ??? - co je teda OLD??? * 	l_new += l_tmp -edx  +  a(l_tmp - l_old) * 	 * 	(e - eta, a - alpha *	d - delta,  *	x - ??? * 	) */class GABNeuron : public ParametrizedNeuron {public:	/** Creates a simple neuron with the given label.	  * @param label The label to be given to the neuron	  * @param hasBias true if the neuron is allowed to have a bias, false otherwise. Default is true	  * @see removeBias	  */	GABNeuron(int label, real initialParameter=1.0, bool hasBias = true);	/// Returns "GABNeuron"	virtual const char *getClassName();};}; //namespace annie#endif // define _GABNEURON_H

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -