Gorot method
Closed this issue · 1 comments
larissayukimiz commented
hongzimao commented
Good question. Notice that the GNN structure (loosely) is h -> f -> g. So the dimensions in the connections are input_dim -> ouput_dim (kind of like a "hidden_dim") -> output_dim -> output_dim. The "hidden_dim" should not be confused with self.hid_dims
, which is within each h, f, g. You can track how h, f, g are actually used by searching when prep
proc
and agg
are called. Hope this helps!