Effacer les filtres
Effacer les filtres

Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

Widrow-Hoff delta rule method with linear layer (adaline)

2 vues (au cours des 30 derniers jours)
HASAN AL-KAF
HASAN AL-KAF le 27 Sep 2017
Clôturé : Stephen23 le 27 Sep 2017
i want to use learnwb which Widrow-Hoff delta rule (also known as least mean square (LMS) algorithm) and updatesits weights and bias when a training sample is presented. this is my code x=401*113 y=1*113 net = linearlayer(0,0.001); net = configure(net,x,y); net.trainFcn = 'trainb'; net.trainParam.epochs = 788; net=train(net,x,y); outputs=net(x); e=output-y ee=e.^2 eee=sum(ee) rmse=sqrt(mean(eee)); zz= postreg (outputs , y) but my error is root mean square error is very high ? could you please give my some suggestion ? is it my training method correct ?
  1 commentaire
Stephen23
Stephen23 le 27 Sep 2017
duplicate:
https://www.mathworks.com/matlabcentral/answers/358528-widrow-hoff-delta-rule-method-with-linear-layer-adaline

Réponses (0)

Cette question est clôturée.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by