Reason to change GCN weight parameter #3236
-
Hi, I was checking the weight in the new GCNConv class. I think it was |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The GCNConv class uses torch_geometric.nn.dense.Linear as it supports lazy initialization, where the parameters are initialized after the first call to forward. Why was lazy initialization needed?
|
Beta Was this translation helpful? Give feedback.
The GCNConv class uses torch_geometric.nn.dense.Linear as it supports lazy initialization, where the parameters are initialized after the first call to forward.
torch.nn.parameter
does not support this.Why was lazy initialization needed?