Azzera filtri
Azzera filtri

How can I make 2 hidden layers in neural network toolkit?

2 visualizzazioni (ultimi 30 giorni)
Excuse for my poor english.
I want a Multi-layer Perceptron neural network by neural network toolkit. but I cannot make 2 hidden layers (just 1 layer available).
How can I make 2 hidden layers in neural network toolkit?

Risposta accettata

Greg Heath
Greg Heath il 25 Mar 2016
Modificato: Greg Heath il 25 Mar 2016
Regression/Curvefitting
net = fitnet([H1,H2]);
Classification/Pattern-Recognition
net = patternnet([H1,H2]);
Time Series
net = narxnet( ID, FD, [ H1, H2]);
timedelaynet and narnet are special cases obtained from
FD = [] and ID = [], respectively.
Hope this helps.
Thank you for formally accepting my answer
Greg

Più risposte (1)

Eustace Tan
Eustace Tan il 25 Mar 2016
Have you tried feedforward back-propagation?

Categorie

Scopri di più su Deep Learning Toolbox 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!

Translated by