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

Method __init__

tf_euler/python/dataflow/gcn_dataflow.py:27–32  ·  view source on GitHub ↗
(self, metapath,
                 add_self_loops=True,
                 **kwargs)

Source from the content-addressed store, hash-verified

25
26class GCNDataFlow(UniqueDataFlow):
27 def __init__(self, metapath,
28 add_self_loops=True,
29 **kwargs):
30 super(GCNDataFlow, self).__init__(num_hops=len(metapath),
31 add_self_loops=add_self_loops)
32 self.metapath = metapath
33
34 def get_neighbors(self, n_id):
35 neighbors = []

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected