Table of Contents

Enum GNNAggregationType

Namespace
AiDotNet.MetaLearning.Options
Assembly
AiDotNet.dll

Specifies how nodes are aggregated to form graph-level representations.

public enum GNNAggregationType

Fields

Attention = 3

Attention-weighted aggregation of node embeddings.

Max = 2

Maximum over each dimension of node embeddings.

Mean = 0

Mean pooling of all node embeddings.

Set2Set = 4

Set2Set aggregation using LSTM.

Sum = 1

Sum of all node embeddings.