MCPcopy Create free account
hub / github.com/alibaba/euler / __init__

Method __init__

tf_euler/python/convolution/agnn_conv.py:28–30  ·  view source on GitHub ↗
(self, dim, **kwargs)

Source from the content-addressed store, hash-verified

26class AGNNConv(conv.Conv):
27
28 def __init__(self, dim, **kwargs):
29 super(AGNNConv, self).__init__(aggr='add', **kwargs)
30 self.build = False
31
32 def __call__(self, x, edge_index, size=None, **kwargs):
33 if not self.build:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected