Base network for all spatio (temporal) chromatic sparse convnet
| 18 | |
| 19 | |
| 20 | class HighDimensionalModel(Model): |
| 21 | """ |
| 22 | Base network for all spatio (temporal) chromatic sparse convnet |
| 23 | """ |
| 24 | |
| 25 | def __init__(self, in_channels, out_channels, config, D, **kwargs): |
| 26 | assert D > 4, "Num dimension smaller than 5" |
| 27 | super().__init__(in_channels, out_channels, config, D, **kwargs) |
nothing calls this directly
no outgoing calls
no test coverage detected