Using DropoutLayer in neural network (not only in CNN)
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
hey guys,
i am using matlab to create a Neural Network for a Regression Problem.
to avoid overfitting i want to add a dropoutLayer after the Input layer, but i see only examples for CNN.
did someone knows, how to add a dropoutLayer in noraml neural Network or Setting the Options of neural Network(not CNN)
thanks
3 comentarios
Mario Schweda
el 29 de Abr. de 2020
I´m looking for the same. A droput layer for simple networks like fitnet. Not only for CNNs.
Respuestas (1)
Moses Wayne
el 16 de Ag. de 2017
The "dropoutLayer" class seems to be able to solve your problem. Calling it with no arguments returns a layer with 0.5 probability of dropping an input element. This layer can then be used in the training of your neural network. Here is a code example of creating a dropout layer with .6 probability of dropping an input element:
myLayer = dropoutLayer(0.6)
4 comentarios
Lingies Santhirasekaran
el 18 de Jun. de 2019
Did anyone found a way to implement dropout in Matlab ?
Thanks
belen celik
el 25 de Ag. de 2019
how can dropoutLayer be implemented in new=newff() type of network?
Ver también
Categorías
Más información sobre Deep Learning Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!