Message Passing Aggregators
aggregator.RdAggregators combine neighbor node features in graph neural networks. Each aggregator implements a different reduction operation (sum, mean, max, etc.) to aggregate features from neighboring nodes.
Details
Available aggregators:
SumAggregator(): Sum of neighbor featuresMeanAggregator(): Mean of neighbor features (with row normalization)MaxAggregator(): Element-wise maximum of neighbor featuresMinAggregator(): Element-wise minimum of neighbor featuresProductAggregator(): Element-wise product of neighbor featuresVarAggregator(): Variance of neighbor featuresStdAggregator(): Standard deviation of neighbor featuresLSTMAggregator(): Not-imlementedSoftmaxAggregator(): Not-imlemented