(self, base_model: nn.Module, sensor_type: int)
| 40 | model_encoder(x) without providing sensor_type explicitly.""" |
| 41 | |
| 42 | def __init__(self, base_model: nn.Module, sensor_type: int): |
| 43 | super().__init__() |
| 44 | self.base_model = base_model |
| 45 | self._sensor_type = sensor_type |
| 46 | |
| 47 | def forward(self, x: torch.Tensor) -> torch.Tensor: |
| 48 | sensor = torch.full( |
nothing calls this directly
no outgoing calls
no test coverage detected