
ANN人工神经网络
beardorado
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
传统bp算法类C/C++实现
#include "stdio.h" #include "stdlib.h" #include "math.h" #include "time.h" #include "memory.h" #define BP_H class BpNet { private: int _nInput; //输入层节点个数 int _nHide;原创 2015-12-24 16:06:25 · 1779 阅读 · 0 评论 -
传统BP神经网络(三层)完整例子(电力负荷预测)
#include "stdio.h" #include "stdlib.h" #include "math.h" #include "time.h" #include "memory.h" #define BP_H class BpNet { private: int _nInput; //输入层节点个数 int _nHide; ...原创 2015-12-24 16:14:07 · 11001 阅读 · 43 评论