(self, infeatn, adj)
| 28 | self.bias.data.uniform_(-stdv, stdv) |
| 29 | |
| 30 | def forward(self, infeatn, adj): |
| 31 | support = th.spmm(infeatn, self.weight) |
| 32 | output = th.spmm(adj, support) |
| 33 | if self.bias is not None: |
| 34 | return output + self.bias |
| 35 | else: |
| 36 | return output |
| 37 | |
| 38 | def __repr__(self): |
| 39 | return self.__class__.__name__ + ' (' \ |
nothing calls this directly
no outgoing calls
no test coverage detected