(self, x, edge_index)
| 106 | self.pf = pf |
| 107 | |
| 108 | def __call__(self, x, edge_index): |
| 109 | edge_index = dropout_adj(edge_index, p=self.pe)[0] |
| 110 | x = drop_feature(x, self.pf) |
| 111 | return x, edge_index |
| 112 | |
| 113 | |
| 114 | def get_feature_weights(x, centrality, sparse=True): |
nothing calls this directly
no test coverage detected