Formula for two layer FFNN
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Matthew Clark
il 22 Mar 2019
Risposto: Ayoub Azzouzi
il 17 Giu 2019
y=b2+LW2_1*tansig(b1+IW1_1*x1); %for one hidden layer
what will be my formula look like if I use 2hidden layers 20 15 neurons?
0 Commenti
Risposta accettata
Greg Heath
il 23 Mar 2019
y1 = b1 + IW1 * x
y2 = b2 + LW2 * tanh( y1 )
y3 = b3 + LW3 * tanh( y2 )
= b3 + LW3 * tanh( b2 + LW2 * tanh( b1 + IW1 * x ) )
Hope this helps
Thank you for formally accepting my answer
Greg
1 Commento
Più risposte (1)
Ayoub Azzouzi
il 17 Giu 2019
Hi there,
I need your help please!
I want creat neural network model for rotor flux estimation, can you help me please ?
Regrads!
0 Commenti
Vedere anche
Categorie
Scopri di più su Sequence and Numeric Feature Data Workflows in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!