-
I'm a bit confused about the difference between the pooling layers and the aggregation operators. To me they seem to provide the same functionality, which is aggregating the features from a set of nodes (which can be the whole graph in case of global pooling/aggregation), e.g. aggr.MeanAggregation does the same as pool.global_mean_pool. Is there any particular theoretical difference, or pooling and aggregation are essentially the same concepts? Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
|
Beta Was this translation helpful? Give feedback.
-
Thanks for the reply. |
Beta Was this translation helpful? Give feedback.
Yes, they are basically the same (except for the module vs function difference), similar to
nn.Dropout
andtorch.nn.functional.dropout
.