parameter k in SAGEConv #8720
-
Hi, I've been investigating ways to aggregate neighbors for SAGEConv with the goal of encompassing not only the closest immediate neighbors but also those that are k steps away. Although the parameter 'k' in SAGEConv lacked a clear explanation, I found that by specifying 'k=...' in the code, it executed successfully. Could you kindly provide an explanation for the 'k' parameter in below code?
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
As far as I understand the codebase, the kwarg Out of curiosity, where have you found the usage of |
Beta Was this translation helpful? Give feedback.
As far as I understand the codebase, the kwarg
k
will be simply ignored. Instead, I'd stackk
layers in the model to aggregate nodes that arek
steps away from each seed node.Out of curiosity, where have you found the usage of
SAGEConv(..., k=k)
?