(self, edge_attr)
| 121 | self.mlp = nn.Sequential(*layers) |
| 122 | |
| 123 | def forward(self, edge_attr): |
| 124 | return self.mlp(edge_attr) |
| 125 | |
| 126 | class EdgeUpdateNet(nn.Module): |
| 127 | def __init__(self, cfg, edge_model_in_dim): |
nothing calls this directly
no outgoing calls
no test coverage detected