-
2层神经网络的LabVIEW实现。反向误差传播…
LabVIEW implementation of neural net with 2 layers. Back Error Propagation learning example.
- 2022-03-20 04:25:55下载
- 积分:1
-
ben wenjian shi tongguo yong cbainxie chengxuo
ben wenjian shi tongguo yong cbainxie chengxuo-ben wenjian shi tongguo yong cbainxie Rezeption gxuo
- 2022-01-26 08:32:48下载
- 积分:1
-
复数运算库,可对复数进行加减和开方运算
复数运算库,可对复数进行加减和开方运算- The complex operation storehouse, may carry on the addition and
subtraction and the root to the plural number operates
- 2023-05-15 21:20:03下载
- 积分:1
-
Kalman filter
卡尔曼滤波的基础算法,对初学者有很大的帮助-Kalman filter-based algorithm, there is a great help for beginners ...................
- 2022-05-28 06:53:28下载
- 积分:1
-
numerical integration : Key words : numerical integration approximate interpolat...
数值积分:关键词:数值积分 近似 插值求积 梯形 辛普生 复化 逐次分半 龙贝格-numerical integration : Key words : numerical integration approximate interpolation Quadrature trapezoidal Simpson Health Minute of successive half Romberg
- 2022-03-25 08:35:29下载
- 积分:1
-
实现动态数组应用
应用VS2010绘制直线,矩形,椭圆和多边形,绘制一个较小的画板。实现的功能简易,熟悉自己所使用的工具,加强训练。
- 2022-02-27 08:58:31下载
- 积分:1
-
该程序用递归的方法产生格雷码序列,它需要一定的额外的空间....
该程序用递归的方法产生格雷码序列,它需要一定的额外的空间.-the procedures used recursive methods Gray code sequence, it needs the additional space.
- 2022-04-11 15:53:22下载
- 积分:1
-
一种求PI值的诡异算法
可以很快求到800位嗷
一种求PI值的诡异算法
可以很快求到800位嗷-A PI value for the strange algorithm can quickly seek to the sound of wailing 800
- 2022-01-27 15:40:48下载
- 积分:1
-
BP网络的C/C++实现,含有详细代码和例子,适合初学者
应用背景人工神经网络(ANN)中关于反向传播算法的内容,相比单个感知器而言,采用多层网络的反向传播算法能表示出更多种类的非线性曲面,整个神经网络可以分成三层:输入层,隐藏层,输出层,通过加权线性变换,层与层之间的传递,最终得到输入层的实数值。关键技术
本人根据附件里面的文章编写的反向传播算法代码,里面含有详细的代码注释和文章例子, 可以让初学者深刻理解反向传播算法,适合初学者学习。给出BP算法训练的例子,对单个样本的训练的情况进行编写和验证。
//输入层到隐层的过程
float fNetj[m];
for (int j= 0;j < m; j++){
fNetj[j] = fTheta[n][j]; //这里权值矩阵最后一列是偏置,偏置×1还是偏置,所以直接加上,
//后面就不用乘了
for(int i = 0;i < n; i++){ //得到netj 的值 netj= X^V
fNetj[j] +=fInputdata[i]*fTheta[i][j];
}
fMidResult[j] = 1/(1 + exp(-fNetj[j]));
//cout
- 2022-08-03 01:10:12下载
- 积分:1
-
研究生算法作业著名的旅行者问题
研究生算法作业著名的旅行者问题-graduate algorithm operating famous Traveler Problem
- 2022-02-24 09:52:24下载
- 积分:1