| 42 | |
| 43 | |
| 44 | class IntermediateFeatureNormalizerBase(nn.Module): |
| 45 | def forward(self, x: torch.Tensor, index: int, rot_index: int = None, skip: Optional[int] = None) -> InterFeatState: |
| 46 | raise NotImplementedError() |
| 47 | |
| 48 | |
| 49 | class IntermediateFeatureNormalizer(IntermediateFeatureNormalizerBase): |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…