Is it possible to include dropout in a fitting network?
7 views (last 30 days)
Show older comments
I am trying to build a network for a regression problem and for this I would like to add a dropout layer into my network.
After some research I found out how to include dropout into a problem where the trainNetwork function is used. Since I am using a fitnet, the train function is used instead. So my question is if I can still add dropout to my network somehow and if I can, how to implement it?
I'd appreciate any help.
0 Comments
Answers (1)
Shashank Gupta
on 4 Oct 2019
Hi Carolin,
Input argument of fitnet function takes array as an input. This array contains the number of neuron to be set up in the model. This function is not yet customized to add different custom layer. There is a way you can add dropout layer, but things will become more tedious to handle. Customization of fitnet function can be done by accessing the output object, redefine the Layers property in the object and use it. Still I would suggest to just use trainNetwork, It gives you more flexibility to choose layer and even customize it.
I hope it helps.
2 Comments
Francesco Marcuzzi
on 8 Sep 2020
I am having the same problem. Apparently there is no way to implement a simple feedforward network with the deep learning design tool.
See Also
Categories
Find more on Image Data Workflows 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!