SAGEConv settings referring to the paper

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!

For reproducing GraphSAGE, I would recommend using an existing example:

1 Like