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

2 次查看(过去 30 天)
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?

采纳的回答

Greg Heath
Greg Heath 2016-3-25
编辑:Greg Heath 2016-3-25
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

更多回答(1 个)

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

类别

Help CenterFile Exchange 中查找有关 Deep Learning Toolbox 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by