You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you so much for providing this helpful package. May I ask a few questions about GPSConv:
I want to use GPSConv (with GENConv) in DeeperGCN.
I checked two codes, graph_gps.py and ogbn_proteins_deepgcn.py.
Could it work for using GPSConv (with GENConv) in DeeperGCN:
In GPSConv, graph_gps.py:
Is batch necessary? Could I not use batch?
Is x = global_add_pool(x, batch) used for global feature? Should I remove this if I want to do a node task?
Add Position Encoding and Structural Encoding:
Should the input of AddLaplacianEigenvectorPE and AddRandomWalkPE be the position of nodes (.pos) or node features (.x)?
How to add Structural Encoding?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi,
Thank you so much for providing this helpful package. May I ask a few questions about GPSConv:
I checked two codes, graph_gps.py and ogbn_proteins_deepgcn.py.
Could it work for using GPSConv (with GENConv) in DeeperGCN:
In GPSConv, graph_gps.py:
Is
batch
necessary? Could I not usebatch
?Is
x = global_add_pool(x, batch)
used for global feature? Should I remove this if I want to do a node task?Add
Position Encoding
andStructural Encoding
:Should the input of
AddLaplacianEigenvectorPE
andAddRandomWalkPE
be the position of nodes (.pos
) or node features (.x
)?How to add
Structural Encoding
?Thank you so much.
Beta Was this translation helpful? Give feedback.
All reactions