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

조회 수: 2 (최근 30일)
eriiharuue
eriiharuue 2016년 3월 25일
편집: Greg Heath 2016년 3월 25일
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