神经网络BP算法程序C语言..doc

  1. 1、本文档共11页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
神经网络BP算法程序C语言.

神经网络BP算法(C程序) 文件输入输出目录为:F:\BP\ 训练样本文件名:训练样本.txt 值为: 11 -1 1 -1 1 0 1 0 1 输出文件名为:阈值.txt??? 权值.txt ========================= #include stdlib.h #include math.h #include conio.h #include stdio.h #define N 2 /*/学习样本个数*/ #define IN 3 /*/输入层神经元数目*/ #define HN 3 /*/隐层神经元数目*/ #define ON 2 /*/输出层神经元数目*/ #define Z 20 /*旧权值保存每次study的权值都保存下来*/ double P[IN]; /*单个样本输入数据*/ double T[ON]; /*单个样本数据*/ double W[HN][IN]; /*/输入层至隐层权值*/ double V[ON][HN]; /*/隐层至输出层权值*/ double X[HN]; /*/隐层的输入*/ double Y[ON]; /*/输出层的输入*/ double H[HN]; /*/隐层的输出*/ double O[ON]; /*/输出层的输出*/ double YU_HN[HN]; /*/隐层的阈值*/ double YU_ON[ON]; /*/输出层的阈值*/ double err m[N]; /*/第m个样本的总误差*/ double a; /*/输出层至隐层的学习效率*/ double b; /*/隐层至输入层学习效率*/ double alpha;? /*/动量因子,改进型bp算法使用*/ double d err[ON];FILE *fp; /*定义一个放学习样本的结构*/ struct { double input[IN]; double teach[ON]; }Study_Data[N]; /*改进型bp算法用来保存每次计算的权值*/ struct { double old_W[HN][IN]; double old_V[ON][HN]; }Old_WV[Z]; int Start_Show() { clrscr(); printf(\n?????????????????????? ***********************\n); printf(?????????????????????? *??? Welcome to use?? *\n); printf(?????????????????????? *? this program of??? *\n); printf(?????????????????????? *? calculating the BP *\n); printf(?????????????????????? *????? model!???????? *\n); printf(?????????????????????? *?? Happy every day!? *\n); printf(?????????????????????? ***********************\n); printf(\n\n Before starting, please read the follows carefully:\n\n); printf(??? 1.Please ensure the Path of the 训练样本.txt(xunlianyangben.txt) is \n correct, like F:\BP\训练样本.txt!\n); printf(??? 2.The calculating results will be saved in the Path of F:\\BP\\!\n); printf(??? 3.The program will load 10 datas when running from F:\\BP\\训练样本.txt!\n); printf(??? 4.The program of BP can study itself for no more than 30000 times.\n And surpassing the number, the program will be ended by itself in\n preventing running infinitely because of error!\n); printf(\n\n\n); printf(Now press any key to start...\n); getch(); ge

文档评论(0)

d47fv82b5hI + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档