Closed yuxuesong1995 closed 1 month ago
sorry, I just note that in the origin paper Gravity-Inspired Graph Autoencoders for Directed Link Prediction , the author has said that in directed graphs, we use out-degree normalization rather than the usual symmetric normalisation.
In Convolution.py, the author uses 'mean' aggregation, which means the transformed feature W_T . x is normalized by degree (+1), but why not using deg_i^-(0.5) * deg_j^-(0.5) as in standard GCN?
I have tried changing the forward method with the standard normalization:
but the performance was worse than:
which I believe is the same as what the author has done in Convolution.py.
It seems that only using degree to normalized the feature is better, but why? I`m confused