How to train a feedfordward neural network with error weights

2 visualizaciones (últimos 30 días)
How to train a feedfordward neural network with error weights....

Respuesta aceptada

Greg Heath
Greg Heath el 27 de Feb. de 2016
Use the command window
help mse
doc mse
Hope this helps.
Thank you for formally accepting my answer
Greg

Más respuestas (1)

Batool Abbas
Batool Abbas el 13 de Jun. de 2021
>> input=data(:,1:10);
>> output=data(:,11);
>> testinput=input(1:870,:);
>> input=input';
>> output=output';
>> testinput=testinput';
>> net=feedforwardnet(12);
>> net=train(net,input,output);
>> y=net(testinput);
>> testoutput=y';
kindly reply to me as soon as possible. Is this code is FEED FORWARD (OR) FEED FORWARD AND BACK PROPAGATION (Both)?

Categorías

Más información sobre Deep Learning Toolbox en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by