How to train a feedfordward neural network with error weights
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
bruno di gaetano
el 26 de Feb. de 2016
Respondida: Batool Abbas
el 13 de Jun. de 2021
How to train a feedfordward neural network with error weights....
0 comentarios
Respuesta aceptada
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
0 comentarios
Más respuestas (1)
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)?
0 comentarios
Ver también
Categorías
Más información sobre Deep Learning Toolbox en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!