r"""PointModule placeholder, all module subclass from this will take Point in PointSequential.
| 175 | |
| 176 | |
| 177 | class PointModule(nn.Module): |
| 178 | r"""PointModule |
| 179 | placeholder, all module subclass from this will take Point in PointSequential. |
| 180 | """ |
| 181 | |
| 182 | def __init__(self, *args, **kwargs): |
| 183 | super().__init__(*args, **kwargs) |
| 184 | |
| 185 | |
| 186 | class PointSequential(PointModule): |
nothing calls this directly
no outgoing calls
no test coverage detected