How can I add layers to a neural network in MATLAB ANN toolbox?

I want to use MATLAB ANN toolbox to construct a neural network with three hidden layers, but in the toolbox I found that the default setting is that there is only one hidden layer, how can I add layers to this network?
Thanks!

 Accepted Answer

net = fitnet([H1 H2 H3]);
However, why in the world would you want to complicate an already universal approximator by adding two more hidden layers?

2 Comments

Thanks! I am going to use three hidden layers because I need to construct an auto-encoder. Its structure is shown here: http://www.nlpca.org/fig_NLPCA_bottleneck_autoassociative_autoencoder_neural_network.png
As mentioned in Ian Goodfellow Book "Deep Learning", adding depth to the neural network reduces the number of neurons required to fit the data. And also as mentioned by him, adding extra layers comes from the belief that basic features are used to produce more complex features as you move uo in the layers heirarchy.
"In many cases, the number of hidden units required by the shallow model is exponential in n." Deep Learning book
P199
"Choosing a deep model encodes a very general belief that the function we want to learn should involve composition of several simpler functions" P201

Sign in to comment.

More Answers (0)

Categories

Find more on Deep Learning Toolbox in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!