(self)
| 43 | return self.mlps[0](features).max(dim=-1, keepdim=True).values, coords |
| 44 | |
| 45 | def extra_repr(self): |
| 46 | return f'out_channels={self.out_channels}, include_coordinates={self.include_coordinates}' |
| 47 | |
| 48 | |
| 49 | class PointNetSAModule(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected