-
Hi, I am thinking of apply "kaiming He" weight-initialization to GATConv layer weights. However, it appears GATConv weight-initialization is internally set as "Xavier (glorot")". My question is, would there be a reason to not replace the "glorot" with "kaiming He" weight-intialization?
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
AFAIK, glorot is used in the official implementation, so I would likely not want to change the default. You can either override the initialization manually, or we could think about providing different strategies for initialization as part of the input arguments of |
Beta Was this translation helpful? Give feedback.
AFAIK, glorot is used in the official implementation, so I would likely not want to change the default. You can either override the initialization manually, or we could think about providing different strategies for initialization as part of the input arguments of
GATConv
. Happy to take a PR on this one.