what is meaning of ?

6 vues (au cours des 30 derniers jours)
Silva Doo
Silva Doo le 18 Avr 2018
net = newff(minmax(alphabet),[S1 10 S2],{'logsig' 'logsig' 'logsig' },'traingdx');
net.LW{2,1} = net.LW{2,1}*0.01;
net.b{2} = net.b{2}*0.01;
net.performFcn = 'mse';
net.trainParam.show = 20;
net.trainParam.epochs = 2000;
net.trainParam.mc = 0.95;
P = alphabet;
T = targets;
[net,tr] = train(net,P,T);

Réponses (1)

Ameer Hamza
Ameer Hamza le 22 Avr 2018

This script is defining a feedforward neural network and initializing the weights and network properties itself. newff is obsolete since R2010b release, You can use feedforwardnet in newer release for same functionality.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by