(self)
| 36 | return output |
| 37 | |
| 38 | def __repr__(self): |
| 39 | return self.__class__.__name__ + ' (' \ |
| 40 | + str(self.in_features) + ' -> ' \ |
| 41 | + str(self.out_features) + ')' |
| 42 | |
| 43 | |
| 44 | class GCN(Module): |
nothing calls this directly
no outgoing calls
no test coverage detected