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

Method __init__

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

Source from the content-addressed store, hash-verified

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

Callers 1

__init__Method · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected