Correct weight Initialization in CNN
8 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Andres Ramirez
il 29 Lug 2018
Modificato: Maria Duarte Rosa
il 5 Lug 2019
When a very deep DAG network is built from scratch, the initialization of the weights made by matlab is not very good since it presents a vanishing gradient problem which causes the CNN not to learn.
What is the function with which Matlab does the initiation of CNN weights?
Why do you implement initialization functions in Matlab such as XAVIER or RELU AWARE SCALALED?
Thank you for your answers.
2 Commenti
Greg Heath
il 31 Lug 2018
I do not understand
"Why do you implement initialization functions in Matlab such as XAVIER or RELU AWARE SCALALED?"
Please explain.
Greg
Risposta accettata
Maria Duarte Rosa
il 5 Lug 2019
Modificato: Maria Duarte Rosa
il 5 Lug 2019
In R2019a, the following weight initializers are available (including a custom initializer via a function handle):
'glorot' (default) | 'he' | 'orthogonal' | 'narrow-normal' | 'zeros' | 'ones' | function handle
Glorot is also know as Xavier initializer.
Here is a page comparing 3 initializers when training LSTMs:
I hope this helps,
Maria
0 Commenti
Più risposte (2)
Andres Ramirez
il 31 Lug 2018
1 Commento
Greg Heath
il 1 Ago 2018
Modificato: Greg Heath
il 1 Ago 2018
Do you have a reference for
RELA AWARE SCALALED
I have no idea what this is.
Thanks
Greg
fareed jamaluddin
il 4 Ago 2018
I think you can take a look at this example https://www.mathworks.com/help/images/single-image-super-resolution-using-deep-learning.html
I am also looking for a way on weight initialization options, you can see in the example it create the initialization with He method for every conv layer.
0 Commenti
Vedere anche
Categorie
Scopri di più su Image Data Workflows in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!