| 172 | |
| 173 | |
| 174 | class OnlyLayersAreNodesTransforms(AbstractGraphTransform, ABC): |
| 175 | def __init__(self, exp_type: str): |
| 176 | super().__init__(exp_type) |
| 177 | self._n_nodes = self.spatial_input_dim[LAYERS] |
| 178 | self.LAYER_NODES = slice(0, self.n_nodes) # all nodes are layer nodes |
| 179 | |
| 180 | |
| 181 | class OnlyLevelsAreNodesTransforms(AbstractGraphTransform, ABC): |
nothing calls this directly
no outgoing calls
no test coverage detected