Thanks for reading this.
I want to reproduce the results in the GraphSAGE paper, but got confused with the SAGEConv. ensure whether these settings are correct. (I thought i just need to change the aggregator_type?)
eg
GraphSAGE_gcn :
SAGEConv(
aggregator_type=“gcn”,
feat_drop=0.0, bias=True, norm=None, activation=None
)
GraphSAGE_pool:
SAGEConv(
aggregator_type=“pool”,
feat_drop=0.0, bias=True, norm=None, activation=None
)
Thanks again!