Return current spatial and temporal mask parameters.
(self)
| 437 | return False |
| 438 | |
| 439 | def update_masks(self) -> torch.Tensor: |
| 440 | """Return current spatial and temporal mask parameters.""" |
| 441 | return self.spatial_masks, self.temporal_masks |
| 442 | |
| 443 | def __getstate__(self): |
| 444 | state = self.__dict__.copy() |
nothing calls this directly
no outgoing calls
no test coverage detected