vineetm / ell-881-2018-deep-learning

Course Materials for ELL 881 2018: Fundamentals of Deep Learning
9 stars 7 forks source link

Project #1 : Dropouts #34

Open prateek27 opened 6 years ago

prateek27 commented 6 years ago

Which layers should should have dropouts ?

abhudev commented 6 years ago

Dense MLP layer should have dropout. In Vineet Sir's notebook, in RNN he has used dropout in the word embeddings and the output FC layer, so you can see the notebook to understand how he has done it.

vineetm commented 6 years ago

@prateek27 There is no single correct method to apply dropout. I would recommend suggestion by @abhudev