You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I have a question about weight initialization of node's additive aggregation here.
At model.py#L41, weights are initialized with torch.ones, not torch.zeros. This will make actual weights to be initialized with 0.7311, not 0.5000. Was it intended? (Though it won't affect much on training, I'm just curious about it.)
The text was updated successfully, but these errors were encountered:
Hi, I have a question about weight initialization of node's additive aggregation here.
At model.py#L41, weights are initialized with
torch.ones
, nottorch.zeros
. This will make actual weights to be initialized with0.7311
, not0.5000
. Was it intended? (Though it won't affect much on training, I'm just curious about it.)The text was updated successfully, but these errors were encountered: