• 大小: 5.71MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-10-12
  • 语言: C/C++
  • 标签: SVM  ,分类器  

资源简介

本项目是利用C++实现手写数字识别,其中包括了多种分类器

资源截图

代码片段和文件信息

// BpNet.cpp: implementation of the BpNet class.
// 2005.1.13-16:02 By Superman 
//////////////////////////////////////////////////////////////////////

#include “stdafx.h“
#include “BpNet.h“
#include “math.h“

#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

BpNet::BpNet()

inNum=5;
hideNum=10;
outNum=4;

tjpt[0]=0;
tjpt[1]=0;
tjpt[2]=0;
tjpt[3]=0;
 //////////////////////////////////////////////////////

w[0][0]=1.0087;
w[0][1]=-0.8205;
w[0][2]=0.05389;
w[0][3]=-0.0496;
w[0][4]=0.9122;
w[0][5]=0.9529;
w[0][6]=-0.1164;
w[0][7]=-1.159;
w[0][8]=0.1164;
w[0][9]=0.459;

w[1][0]=0.7202;
w[1][1]=-0.1687;
w[1][2]=0.5822;
w[1][3]=1.0328;
w[1][4]=0.9833;
w[1][5]=0.8660;
w[1][6]=-0.8655;
w[1][7]=-0.2271;
w[1][8]=0.3685;
w[1][9]=-0.4271;

w[2][0]=1.0656;
w[2][1]=1.3893;
w[2][2]=-0.4942;
w[2][3]=1.5207;
w[2][4]=-1.1254;
w[2][5]=-0.5841;
w[2][6]=0.9143;
w[2][7]=-1.2891;
w[2][8]=0.0143;
w[2][9]=0.2891;

w[3][0]=-0.8710;
w[3][1]=-0.9764;
w[3][2]=-1.6356;
w[3][3]=0.3952;
w[3][4]=-0.5716;
w[3][5]=-1.1786;
w[3][6]=-1.3949;
w[3][7]=0.6398;
w[3][8]=0.3949;
w[3][9]=0.0998;

w[4][0]=1.0087;
w[4][1]=-0.8205;
w[4][2]=0.05389;
w[4][3]=-0.0496;
w[4][4]=0.9122;
w[4][5]=0.9529;
w[4][6]=-0.1164;
w[4][7]=-1.159;
w[4][8]=0.4864;
w[4][9]=0.759;

////////////////////////////////////////
w1[0][0]=0.6762;
w1[0][1]=-0.9607;
w1[0][2]=-0.8025;
w1[0][3]=0.0909;

w1[1][0]=0.3626;
w1[1][1]=-0.2410;
w1[1][2]=-0.5382;
w1[1][3]=-0.7611;

w1[2][0]=0.6636;
w1[2][1]=0.0056;
w1[2][2]=-0.2765;
w1[2][3]=-0.3734;

w1[3][0]=0.4189;
w1[3][1]=-0.1422;
w1[3][2]=0.0956;
w1[3][3]=0.3097;

w1[4][0]=-0.3908;
w1[4][1]=-0.6207;
w1[4][2]=0.4534;
w1[4][3]=0.4855;

w1[5][0]=-0.6131;
w1[5][1]=0.3644;
w1[5][2]=0.2213;
w1[5][3]=0.4040;

w1[6][0]=-0.1964;
w1[6][1]=0.0792;
w1[6][2]=-0.3945;
w1[6][3]=0.0833;

w1[7][0]=-0.6983;
w1[7][1]=0.3958;
w1[7][2]=-0.8677;
w1[7][3]=0.4007;

w1[8][0]=0.6762;
w1[8][1]=-0.9607;
w1[8][2]=-0.8025;
w1[8][3]=0.0909;

w1[9][0]=0.3626;
w1[9][1]=-0.2410;
w1[9][2]=-0.5382;
w1[9][3]=-0.7611;
///////////////////////////////////////////
b1[0]=-0.1293;
b1[1]=1.06167;
b1[2]=-0.0801;
b1[3]=-0.1915;
b1[4]=0.8152;
b1[5]=0.0592;
b1[6]=-0.7001;
b1[7]=0.4053;
b1[8]=0.7274;
b1[9]=-0.1563;

b2[0]=0.4712;
b2[1]=0.2923;
b2[2]=0.6773;
b2[3]=0.4197;

/////////////////////////////////////////////////////////////
for(int i=0;i<200;i++)
{
x[i]=0;
x1[i]=0;
x2[i]=0;
o1[i]=0;
o2[i]=0;
pp[i]=0;
qq[i]=0;
yd[i]=0.0;
}
error=0.001;
e=0.0;

rate_w=0.05;  //权值学习率(输入层--隐含层)
rate_w1=0.047; //权值学习率 (隐含层--输出

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       5335  2005-05-05 21:54  分类程序\BpNet.cpp

     文件       1312  2005-01-13 16:07  分类程序\BpNet.h

     文件       9545  2008-10-30 10:50  分类程序\bpnet.txt

     文件       3606  2003-05-30 21:04  分类程序\Cdib.cpp

     文件        844  2003-05-30 21:03  分类程序\Cdib.h

     文件      19381  2006-04-17 16:32  分类程序\Classification.cpp

     文件       1089  2005-01-14 16:33  分类程序\Classification.h

     文件      12134  2008-10-30 10:21  分类程序\Debug\BpNet.obj

     文件       6719  2008-10-30 10:21  分类程序\Debug\BpNet.sbr

     文件      16839  2006-05-22 14:13  分类程序\Debug\Cdib.obj

     文件          0  2006-05-22 14:13  分类程序\Debug\Cdib.sbr

     文件      49589  2006-05-22 14:13  分类程序\Debug\Classification.obj

     文件          0  2006-05-22 14:13  分类程序\Debug\Classification.sbr

     文件      13361  2006-05-22 14:13  分类程序\Debug\DlgClassify.obj

     文件          0  2006-05-22 14:13  分类程序\Debug\DlgClassify.sbr

     文件      12658  2006-05-22 14:13  分类程序\Debug\Dlgdisplay.obj

     文件          0  2006-05-22 14:13  分类程序\Debug\Dlgdisplay.sbr

     文件      10568  2006-05-22 14:13  分类程序\Debug\DlgNumber.obj

     文件          0  2006-05-22 14:13  分类程序\Debug\DlgNumber.sbr

     文件      52720  2006-05-22 14:13  分类程序\Debug\DlgTemplate.obj

     文件          0  2006-05-22 14:13  分类程序\Debug\DlgTemplate.sbr

     文件      22205  2006-05-22 14:13  分类程序\Debug\DlgWeight.obj

     文件          0  2006-05-22 14:13  分类程序\Debug\DlgWeight.sbr

     文件    3302400  2006-05-22 14:13  分类程序\Debug\DSPLIT.bsc

     文件     233553  2008-10-30 10:21  分类程序\Debug\DSPLIT.exe

     文件     537144  2008-10-30 10:21  分类程序\Debug\DSPLIT.ilk

     文件      25118  2006-05-22 14:13  分类程序\Debug\DSPLIT.obj

     文件    6880356  2006-05-22 14:13  分类程序\Debug\DSPLIT.pch

     文件     640000  2008-10-30 10:21  分类程序\Debug\DSPLIT.pdb

     文件      14392  2006-05-22 14:13  分类程序\Debug\DSPLIT.res

............此处省略209个文件信息

评论

共有 条评论