Enum GNNAggregationType
- Namespace
- AiDotNet.MetaLearning.Options
- Assembly
- AiDotNet.dll
Specifies how nodes are aggregated to form graph-level representations.
public enum GNNAggregationType
Fields
Attention = 3Attention-weighted aggregation of node embeddings.
Max = 2Maximum over each dimension of node embeddings.
Mean = 0Mean pooling of all node embeddings.
Set2Set = 4Set2Set aggregation using LSTM.
Sum = 1Sum of all node embeddings.