资源简介
最简单的三层神经网络Matlab实现,带注释,有不明白的可以参考我的博客:http://blog.csdn.net/ranchlai
代码片段和文件信息
%function output = ANN_Training(X t H max_iter)
%Train ANN with one hidden layer and one output unit for classification
%input :
%X: attributes. Every column represents a sample.
%y: target. should be 0 or 1. length(y) == size(X2) is assumed.
%H: size of hidden layer.
%max_iter: maximum iterates
%tol: convergence tolerate
%output:
% output: a structure containing all network parameters.
%Created by Ranch Y.Q. Lai on Mar 22 2011
%yqlai@comp.hkbu.edu.hk
function output = ANN_Training(X t H max_itertol)
[nN] = size(X);
if N~= length(t)
error(‘inconsistent sample size‘);
end
W = randn(nH); % weight for hidden layer W(:i) is the weight vector for unit i
b = randn(H1); % bias for hidden layer
wo = randn(H1); %weight for output layer
bo = rand
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2013-09-07 12:48 ANN\
文件 3006 2013-09-07 11:58 ANN\ANN_Training.m
文件 607 2013-09-07 12:58 ANN\demo_ann.asv
文件 608 2013-09-07 12:47 ANN\demo_ann.m
文件 4808 2013-09-07 12:48 ANN\error.png
文件 76 2012-03-22 08:38 ANN\s.m
文件 1019 2013-09-07 09:26 ANN\set1.mat
文件 1043 2013-09-07 09:27 ANN\set2.mat
文件 811 2013-09-07 11:57 ANN\test_correct_classification.m
相关资源
- synchronization 利用matlab仿真实现载波的
- fuzzynetme 模糊神经网络的MATLAB程序
- wnn 一个用小波神经网络进行非线性函
- zifushibie 用MATLAB实现的字符识别
- ANN_PID6
- PNNpredict19
- gaoanfis2 模糊自适应神经网络(ANFIS)
- ELMAN 详细介绍了ELMAN这种神经网络的构
- Bp 利用Bp神经网络实现的两类分类程序
- TheResearchofOff-linehandwrittenChinesecharact
- BP_Neural_Netwok-Recognition_License_Plate(M
- RBF-shenjingwangluoyuce RBF神经网络预测控
- RBF-shenjingwangluohundunyuce RBF神经网络混
- m471 pid神经网络控制控制代码
- Cellular-Neural-Network 细胞神经网络(C
-
BP_tanh_linaer BP神经网络Simuli
nk模型。 - darkchannel 用MATLAB实现的darkchannel算法
-
MethodofFaultDiagnosisforRollingBearingba
se - daopin 将压缩感知应用于基于训练序列
- PIDNN 将人工神经网络用于PID参数调节
- canny 自己实现的canny边缘检测算子
- BP 基于BP神经网络设计分类器
- robot_motion_planning
- matlabpathplanning1
- Image-Restoration-with-BPNN 基于BP神经网络
- pathplann-algorithm
- LPR-neural-network 我自己做的一个基于神
- matlab-GUI 本人编写的matlab的GUI程序
- pca-som matlab下采用som神经网络算法进行
- bpcross 一个matlab写的bp人工神经网络程
评论
共有 条评论