感知器神经网络..docVIP

  • 6
  • 0
  • 约1.29千字
  • 约 9页
  • 2017-01-29 发布于重庆
  • 举报
感知器神经网络.

感知器神经网: clear all close all P=[0 0 1 1;0 1 0 1] T=[0 1 1 1] net=newp(minmax(P),1,hardlim,learnp) net=train(net,P,T) Y=sim(net,P) plotpv(P,T) plotpc(net.iw{1,1},net.b{1}) 性神经网络 clear all close all P=[1.0 2.1 3 4] T=[2.0 4.01 5.9 8.0] lr=maxlinlr(P) net=newlin(minmax(P),1,0,lr) net.trainParam.epochs=300 net.trainParam.goal=0.05 net=train(net,P,T) Y=sim(net,P) clear all close all P=[1.1 2.2 3] T=[2.1 4.3 5.9] net=newlind(P,T) Y=sim(net,P) x=-4:.1:4 y=tansig(x) plot(x,y,^-r) Sigmoid As a reminder:?σ(x)=1/1+exp(?x) Its derivative:?ddxσ(x)=(1?σ(x))?σ(x) The problem here is

文档评论(0)

1亿VIP精品文档

相关文档