MCPcopy Create free account
hub / github.com/PyGCL/PyGCL / augment

Method augment

GCL/augmentors/node_dropping.py:10–15  ·  view source on GitHub ↗
(self, g: Graph)

Source from the content-addressed store, hash-verified

8 self.pn = pn
9
10 def augment(self, g: Graph) -> Graph:
11 x, edge_index, edge_weights = g.unfold()
12
13 edge_index, edge_weights = drop_node(edge_index, edge_weights, keep_prob=1. - self.pn)
14
15 return Graph(x=x, edge_index=edge_index, edge_weights=edge_weights)

Callers

nothing calls this directly

Calls 3

drop_nodeFunction · 0.90
GraphClass · 0.90
unfoldMethod · 0.80

Tested by

no test coverage detected