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
N(v) ,the fixed-size of neighbors, which is mentioned in the paper. I think this is to make sure that the aggregate function can work correctly. But what if a node with neighbors less than N(v). How dose the model sample and train? And what would happen if there is an isolated node in train or inference stage?
The text was updated successfully, but these errors were encountered:
Graphsage will either be given as a parameter a max node degree to adhere to or observe the node with the highest degree and when building the adjacency matrix will sample the neighbors of each node and in the event a node has fewer neighbors than max(N(v)) then that node's neighbors will be resampled (sampled with replacement).
If a node is isolated, meaning no incident edges or neighbors, then graphsage can not aggregate to that node and an embedding can't be learned for that node.
N(v) ,the fixed-size of neighbors, which is mentioned in the paper. I think this is to make sure that the aggregate function can work correctly. But what if a node with neighbors less than N(v). How dose the model sample and train? And what would happen if there is an isolated node in train or inference stage?
The text was updated successfully, but these errors were encountered: