Is it possible to include dropout in a fitting network?
7 次查看(过去 30 天)
显示 更早的评论
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 个评论
回答(1 个)
Shashank Gupta
2019-10-4
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 个评论
Francesco Marcuzzi
2020-9-8
I am having the same problem. Apparently there is no way to implement a simple feedforward network with the deep learning design tool.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Image Data Workflows 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!