MCPcopy
hub / github.com/dmlc/dgl / __call__

Method __call__

python/dgl/transforms/module.py:1109–1112  ·  view source on GitHub ↗
(self, g)

Source from the content-addressed store, hash-verified

1107 self.transforms = transforms
1108
1109 def __call__(self, g):
1110 for transform in self.transforms:
1111 g = transform(g)
1112 return g
1113
1114 def __repr__(self):
1115 args = [" " + str(transform) for transform in self.transforms]

Callers

nothing calls this directly

Calls 1

transformFunction · 0.85

Tested by

no test coverage detected